Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 10 down vote accepted

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'
share|improve this answer
2  
Excellent answer, thanks :) – Thomas Bratt Nov 4 '09 at 17:23
You're welcome, glad to help. – John Sansom Nov 4 '09 at 17:28
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'
share|improve this answer
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 '09 at 17:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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