We have a requirements to execute Stored Procedure when SQL SERVER is started/restarted and we need to start some processes. I found that SQL SERVER provides a way to call Stored Procedure when SQL services are restarted.
SQL SERVER provides this SP: “sp_procoption”, which is auto executed every time when SQL SERVER service has been started. I found this SP and it helps me to figure it out the solution for the request as following way. Let me show you how to use it.
Syntax use this SP:
EXEC SP_PROCOPTION @ProcName = 'SPNAME', @OptionName = 'startup', @OptionValue = 'true/false OR on/off'
That’s it,
I hope this is very clear to use this feature.
Reference : Tejas Shah (http://www.SQLYoga.com)