Error initializing SQL Server Express

1

I try to initialize the SQL Server service (SQLEXPRESS) and I get this error message:

What can it be?

    
asked by anonymous 19.05.2014 / 01:30

2 answers

1

Never use services.msc to start SQL Server services. It does not correctly start all SQL Server requirements.

Instead try restarting the service using SQL Server Configuration Manager

Moreinformation here

If the problem persists, use Event Viewer to find the root cause of the service not having started. I have already had file permission problems in the% s folder of SQL Server while starting the service on an unprivileged Administrator account, which I discovered from the error logs.

    
19.05.2014 / 02:45
0

What might be happening is that the SQL Server service is running with the user NT AUTHORITY\LocalService change to Conta do Sistema Local . This will allow you to start the service normally.

    
19.05.2014 / 01:41