If you've painted yourself into the single_user corner, here is how you can get out.
Month: March 2016
Favorite Computer Environment Tools
The Deep Secrets of My Computing Environment!
In my computing environment, I have a set of tools that I rely on because they just make life easier. Here they are in order of (perceived) actual usage.
SQL Server – Getting All SQL Services Running On System
Getting all services running SQL Server using T-SQL: SELECT * FROM sys.dm_server_services
PowerShell – Getting All Running SQL Services
Getting all SQL Server services running on a server using PowerShell: Get-WmiObject -Class sqlservice -Namespace…
PowerShell – Making Arrays
The basics of creating a PowerShell array and working with it.
PowerShell – Find Active Node On Cluster
PowerShell script that prints out the state of the node you are on – Active or Passive.
SQL Server – All Objects On Instance Sorted By Date
One common question I hear whenever something begins to go wrong is, “Has anything been…
Moving Database Files to Another Location
Although moving database files around is simple, it is a still big deal. When you…
SQL Server Compare Users Script
If you need to compare two users in SQL Server, here is a handy script….