top of page

SQL Script to find SQL Service Information

-- SQL Server Services information (SQL Server 2008 R2 SP1 or greater)

SELECT servicename, startup_type_desc, status_desc,

last_startup_time, service_account, is_clustered, cluster_nodename

FROM sys.dm_server_services OPTION (RECOMPILE);

4 views0 comments

Recent Posts

See All

SQL Server Profiler Trace

--Import multiple trace file in sql Table. --All the rollover files will be automatically imported --provide number tracefile to capture...

コメント


bottom of page