12

When we boot SQL Server, SAN drives might not be availiable yet. Is there a way to delay SQL Server start by 1 minute? Right now we have to restart SQL Server after we boot the server.

ob213
  • 654
  • 1
  • 9
  • 19

3 Answers3

10

We talked about a similar issue before here and here and what worked in that case was setting the SQL Server to be dependent on the disk drivers. You'll want to test this to make sure this works in your setup but it should do the trick.

mrdenny
  • 27,106
  • 2
  • 44
  • 81
5

Try these:

  • Set a service dependency on some SAN/HBA service (can be done in services.msc)
  • Change the service to "Automatic (Delayed start)" if a later OS
  • Set the service to "Manual" and trigger with a job (as per Richard's answer)
gbn
  • 70,237
  • 8
  • 167
  • 244
2

Two things come to mind.

There is a version of Windows that allows delayed starts. However, I suspect that even if you set that up, it won't be long enough. (Also, I suspect that you probably don't have that version of windows, if you're using SAN.)

One solution (although a bit hacky) would be to create a batch script that delayed for 60 seconds and then called the service to start it up:

REM delay 60 seconds
ping 127.0.0.1 -n 60  
net start mssqlserver

Add that to your Startup folder in your Program Files and it should work.

Richard
  • 1
  • 8
  • 42
  • 62