What does FLUSH STATUS do? We all know that it will simply reset all status variables (except for 'uptime') to same values as immediately...
database-tools
Categories
- Free tools
- SQL Admin Toolset
- SQL Compliance Manager
- SQL Defrag Manager
- SQL Diagnostic Manager for MySQL
- SQL Diagnostic Manager for SQL Server
- SQL Diagnostic Manager Pro
- SQL Doctor
- SQL Enterprise Job Manager
- SQL Inventory Manager
- SQL Query Tuner for SQL Server
- SQL Safe Backup
- SQL Secure
- SQL Workload Analysis for SQL Server
- Uptime Infrastructure Monitor Formerly Uptime
Finding IP and MAC address
When you query network adapters with WMI, it is not easy to find the active network card. To find the network card(s) that are currently connected...
Turning Multi-Value WMI Properties into Text
When you read multi-valued information from WMI or any other source, for example, network adapter IP addresses, this information is returned as a...
Finding Network Adapter Data Based On Connection Name
Sometimes it would be nice to be able to access network adapter configuration based on the name of that adapter as it appears in your network and...
Performance_schema considerations.
I have for the first time been spending some time trying to understand the performance_schema. It is not easy to understand everything unless you...
Creating Excel Reports from PowerShell Data
Provided you have Microsoft Excel installed, here is a clever function that you can use to convert PowerShell results into Excel spreadsheets:...
Outputting Text Reports without Truncating
If you want to capture PowerShell results in a text file, you can redirect the results or pipe them to Out-File. In any case, what you capture is...
Turning SIDs into Real Names
Sometimes, you'd like to turn security identifiers (SIDs) into real names. Here is a function that can do this for you: function SID2Name($sid){...
Converting User Names to SIDs
If you want to translate a valid user name to its security identifier (SID), here is a function to do that for you: function Name2SID($name,...
Changing Units
When you list folder contents, file sizes are in bytes. If you'd rather like to view them in MB or GB, you can use calculated properties, but by...
Closing Excel Gracefully
When you access Microsoft Excel from script, you may have noticed that it never gets removed from memory again, even if you call its Quit() method:...
Setting per-server thresholds in Monyog.
Please note that this blog was updated on April 5th 2012. We have added(at the buttom) how to use server TAGS for defining thresholds....
Formatting Currencies
Formatting numbers as currencies is straight-forward - as long as it is your own currency format: '{0:C}' -f 12.22 If you want to output...
Using Regular Expressions with Dir
When you use Dir (alias: Get-ChildItem) to list folder contents, you can use simple wildcards but they do not give you much control. A much more...
Permanently Changing User Environment Variables
To create or change an environment variable in the user context, use this low-level call: [environment]::SetEnvironmentVariable('Test',...
Using Wildcards with Environment Variables
You can use the env: PowerShell drive to list all Windows environment variables like this: PS> Dir env:*user* Name Value ---- ----- USERNAME...
Creating PowerShell Menus
PowerShell is console based, so its default menus are console based as well. To offer choices to your users, here is some sample code to create a...
Scanning Registry for ClassIDs
The Windows Registry is a repository filled with various Windows settings. Get-ItemProperty can read Registry values and accepts wildcards. So, with...
Bypassing Execution Policy
When execution policy prevents execution of PowerShell scripts, you can still execute them. There is a secret parameter called "-" . When you use...
Why does selecting a file in the filechooser on OSX not select the file extension with the full file name?
I run the Import Tool, and click browse to select a file to import. When I select one of my files, which has a .CSV extension, the full file name is...
I get the warning “Server returned invalid line number (0)” when debugging a Sybase procedure, am I doing something wrong?
I am not sure why I am getting the warning "Server returned invalid line number (0)" when debugging Sybase stored procedures. Response Niels Gron...
Why are certains operations of Aqua Data Studio very slow with MySQL?
I have a server registration to MySQL and other databases. When I execute queries in the Query Window for MySQL they are fast. But If I try to...
Why isn’t there a Procedure Editor for MySQL like there is for the other database vendors?
I can right mouse click on a procedure in Oracle, DB2 and SQL Server and choose the "Edit in Procedure Editor", but in MySQL this option doesn't...
Aqua Data Studio is crashing, not responding, or showing other signs of unstable behavior. What do I do?
Aqua Data Studio is crashing, not responding, or showing other signs of unstable behavior. Response Jonathan Powers over 11 years ago Unstable...
How can I backup Aqua Data Studio settings and server connections, or move them from one computer to another?
How can I backup Aqua Data Studio settings and server connections, or move them from one computer to another? Response Jonathan Powers over 11 years...
Scripts with multiple statements return errors. Some database commands or symbols do not work in Aqua Data Studio while they do work in the database vendor’s command line tool.
Scripts with multiple statements return errors. Some database commands or symbols (such as “;”) do not work in Aqua Data Studio while they do work...
Aqua Data Studio is running out of memory. How do I increase it?
Aqua Data Studio is running out of memory. How do I increase it? Response Jonathan Powers over 11 years ago Memory Allocation in Aqua Data Studio If...
Aqua Data Studio gets disconnected after a certain period of time.
Aqua Data Studio gets disconnected after a certain period of time. Response Tariq Rahiman over 11 years ago Timeouts: ADS periodically gets...
How do I connect to PostgreSQL using SSL and my personally created certificate
I want to connect to my PostgreSQL server using SSL. I've created a certificate on my PostgreSQL server, but I can't configure Aqua Data Studio to...
Controlling Automatic Updates Installation Time
To find out when Automatic Updates wakes your PC to install new updates, here is a script that will retrieve that information: $updateObj =...