Services running on local MSSQL server
SQL Scripts
September 15, 2006
Services running on local MSSQL server


>>Script Language and Platform: SQL SERVER 2000
The procedure will list code, name and current state of each service that is installed on the machine where SQLSERVER2000 is running.

EXEC sp_services

Author: mikr0s



CREATE PROCEDURE sp_services

AS



CREATE TABLE #services (ident SMALLINT identity, fld NVARCHAR(200))



--get output of command in temporary table

INSERT INTO #services (fld)

EXEC master..xp_cmdshell 'sc query state= all' --remove 'state= all' for displaying only running services



--keep only needed records (service code, service displayed name, state

DELETE FROM #services

WHERE ISNULL(fld, '') NOT LIKE 'SERVICE_NAME%'

AND ISNULL(fld, '') NOT LIKE 'DISPLAY_NAME%'

AND ISNULL(fld, '') NOT LIKE '%STATE%'



--remove labels

UPDATE #services

SET fld = LTRIM(RIGHT(fld, LEN(fld) - CHARINDEX(':', fld, 1)))



--display services, names and state

SELECT tbl1.fld AS srv_code, tbl2.fld AS srv_name, tbl3.fld AS state

FROM #services tbl1, #services tbl2, #services tbl3

WHERE tbl2.ident = tbl1.ident+1

AND tbl3.ident = tbl1.ident + 3



DROP TABLE #services



--EOF--


Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as -is", without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose... Disclaimer Continued


Back to Database Journal Home

Close    To Top
  • Prev Article-Database:
  • Next Article-Database:
  • Now: Tutorial for Web and Software Design > Database > MS SQL > Database Content
    Photoshop Tutorial
     

    Special Effect

      3D Effect
      Photoshop Articles
    Programming Tutorial
     

    C/C++ Tutorial

      Visual Basic
      C# Tutorial
    Database Tutorial
     

    MySQL Tutorial

      MS SQL Tutorial
      Oracle Tutorial
    Geek Tutorial
     

    Blogging Tutorial

      RSS Tutorial
      Podcasting Tutorial
    Graphic Design Tutorial
      Coreldraw Tutorial
      Illustrator Tutorial
      3D Tutorials
    Webmaster Articles
     

    Domain Service

      Web Hosting
      Site Promotion
    Java Tutorial/ Articles
     

    Java Servlets

      JavaEE Tutorial
     

    JavaBeans Tutorial

    XML Tutorial/ Articles
     

    XML Style

      AJAX Tutorial
      XML Mobile
    Flash Tutorial/ Articles
     

    Flash Video

      Action Script
      Flash Articles
    OS Tutorial/ Articles
      Linux Tutorial
      Symbian Tutorial
      MacOS Tutorial
    Personal Tech
      Hardware Tutorial
      Software Tutorial
      Online Auction