database-tools

Converting Error Records

Whenever PowerShell raises an error, an error record is written to $error which is an array storing the last errors that occurred. You can try and...

Error Logging in MySQL 8

Although only available as a Release Candidate, MySQL 8 is already proving itself to be a huge leap forward in many regards. Error logging is no...

Creating Hexadecimal Values

Here are a couple of ways to convert decimal to hexadecimal notation: $value = 255 [Convert]::ToString($value, 16) '{0:x}' -f $value...

Installing PowerShell 6 with Chocolatey

In the previous tips, we explained how you can download and install Chocolatey, a free Windows package manager that can install software for you....

Using Chocolatey with PowerShell

Chocolatey is a free package manager for Windows that can be used to download and install software. Before you can use Chocolatey from PowerShell,...

Examining Digital Signature Signers

When you download a script from the internet, it may contain a digital signature that can help you find out where the script comes from. We looked...

Trusting Downloaded Scripts

Scripts downloaded via Internet have a great potential of being infected with malware, or originate from illegitimate sources. Digital signatures...

Creating Custom Reports in Precise

The Precise solution gathers a lot of information across all tiers of web-based applications, as well as database activity. This data is stored in...

1 57 58 59 60 61 159