PowerShell – Get All SQL Instances On Server
This script will return all SQL instances running on a server or list of servers. cls...
This script will return all SQL instances running on a server or list of servers. cls...
This was made possible by the Scripting Guy. I have boiled it down to the answer....
Query to get all currently running jobs with their run duration in seconds. Source: http://www.sanssql.com/2013/08/t-sql-query-to-find-currently-running.html SELECT...
This is a bit of a scary task. Someone tells you about 87 databases that all...
Maybe this is a one-off type of thing, but if you need to see every folder...
If you've painted yourself into the single_user corner, here is how you can get out.
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.
Getting all services running SQL Server using T-SQL: SELECT * FROM sys.dm_server_services
Getting all SQL Server services running on a server using PowerShell: Get-WmiObject -Class sqlservice -Namespace “ROOT\Microsoft\SqlServer\ComputerManagement11″...