vote up 1 vote down star

How is it possible to run a stored procedure when SQL Server Express Edition starts?

flag

74% accept rate

2 Answers

vote up 9 vote down check

Use the system stored procedure sp_procoption to define the stored procedure you wish to be executed at SQL Server Service startup.

exec sp_procoption 
        @ProcName    = 'procedureName',
        @OptionName  = 'startup', 
        @OptionValue = 'true'
link|flag
2  
Excellent answer, thanks :) – Thomas Bratt Nov 4 at 17:23
You're welcome, glad to help. – John Sansom Nov 4 at 17:28
vote up 1 vote down
USE master;
GO
-- first set the server to show advanced options
EXEC sp_configure 'show advanced option', '1';
RECONFIGURE
-- then set the scan for startup procs to 1
EXEC sp_configure 'scan for startup procs', '1';
RECONFIGURE

IF OBJECT_ID('spTest') IS NOT NULL
    DROP PROC spTest
GO
-- crate a test stored procedure
CREATE PROC spTest
AS
-- just create a sample database
EXEC('CREATE database db1')

GO
-- set it to run at sql server start-up
exec sp_procoption N'spTest', 'startup', 'on'
link|flag
A comment that might explain the code above: "Only the system administrator (sa) can mark a stored procedure to execute automatically. In addition, the stored procedure must be in the master database and owned by sa and cannot have input or output parameters." – Thomas Bratt Nov 4 at 17:28

Your Answer

Get an OpenID
or

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