database-tools

Cleaning Up PowerShell Modules (Part 2)

In part 1 we looked at removing PowerShell modules that were originally installed via “Install-Module”. You can as well remove PowerShell modules...

Cleaning Up PowerShell Modules (Part 1)

There are plenty of scripts available that promise to read the original Windows 10 product key from the registry by converting a series of binary...

Unblocking Multiple Files

When you download files from the internet, or when you copy files from untrusted sources to an NTFS-formatted drive, Windows adds a secret NTFS...

Tune SQL queries for SQL Server

Writing and tuning SQL code are two different things. There are many ways to write code so that it does the intended function. But there are also...

Major Update for PowerShell Extensions

If you have tried VS Code in the past but were disappointed because of speed and stability, you may want to have a second look now. On May 3, Sydney...

View wait stats for SQL Server

There are several things that could cause performance issues for a query. You can identify these by breaking down the processing time for a query...

View query metrics for SQL Serve

There are many things that can cause slowdowns in SQL Server, such as resources like disk, memory, and network. But the one place where database...

Analyze deadlocking for SQL Server

Deadlocking is a common problem that can occur in an SQL Server database. This is like blocking. But instead of being blocked forever, SQL Server...

Analyze blocking for SQL Server

Blocking is a normal activity that occurs in SQL Server and it does that to control data integrity and make sure only one resource can change a set...

See the entire SQL Server environment

There are many advantages of using SQL Diagnostic Manager over building your own tools and one of these is the enterprise management view of all...

Resolving URLs

URLs aren’t always (directly) pointing to a resource. Often, URL act as shortcuts or static addresses that always point to latest versions....

SQL Server security best practices

There are several examples where data theft has brought organizations to a halt or resulted in a bad press that will leave a tarnished image. For...

Reading Windows 10 Product Key

There are plenty of scripts available that promise to read the original Windows 10 product key from the registry by converting a series of binary...

Creating sudo for PowerShell (Part 2)

In our effort to create a sudo command for PowerShell – to elevate individual commands – in part 1 we created the sudo function body: function sudo...

1 7 8 9 10 11 159