What do I need running to use SQL Server

Jim Stiene 60 Reputation points
2024-01-19T16:03:45.1766667+00:00

I noticed a file running using 200 megs on startup after installing SQL Server for developers and disabling it. But now I can't connect to the server. What do I need to trigger to use it, SQLAgent.exe? If I can find the right file I can create a desktop shortcut.

SQL Server Other
{count} votes

Accepted answer
  1. Michael Taylor 60,161 Reputation points
    2024-01-19T16:42:21.9366667+00:00

    SQL Server is a service so it requires the SQL service which runs as SQL Server * where the asterisk is the instance name. That is the database and is the minimum you need to connect using SSMS. If you are using SSIS then that is a separate service. Same thing for SSRS. If you have enabled full text searching in SQL and need that then there is yet another service for that.

    In general you should have the SQL service running as Automatic so it always runs. The remaining services can be set to Manual so they start on demand. The SQL Server VSS Writer needs to be running as well for backup and recovery.

    Note that you cannot create a shortcut to the SQL Service because it is a service. It is run from the Services MMC snapin and requires admin privileges to manage. You should leave it running all the time unless you only rarely need to use it in which case you can start it (from an elevated command prompt or MMC) when you need it. You don't need anything else running.


1 additional answer

Sort by: Most helpful
  1. Ken Kam Hung, Lin 91 Reputation points
    2024-01-22T02:04:10.9466667+00:00

    It is SQL engine. If you stop it, the SQL server is not running at all and so you could not connect to it. You could go to "Control Panel --> Services" to enable it back.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.