vote up 2 vote down star

I need to start and stop SQL Server from the command line. I am willing to write a small C# program if necessary, but I suspect that there's something (PowerShell, maybe?) that currently exists that does this gracefully.

Thank you

flag

79% accept rate

4 Answers

vote up 8 vote down check

net {start|stop} mssqlserver

link|flag
Thank you very much. You were the quickest finger on the trigger! – rp Dec 15 '08 at 16:50
vote up 3 vote down

net start/stop

http://technet.microsoft.com/en-us/library/cc736564.aspx

link|flag
vote up 1 vote down

http://msdn.microsoft.com/en-us/library/ms187463.aspx

link|flag
vote up 2 vote down

Or, in PowerShell, Stop-Service, Start-Service, or Restart-Service. Note that all of this has to be done on a per-instance basis, just as with the other suggestions here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.