How to check if S.P. is included in server startup?

  • I added a S.P. to startup process with sp_procoption. Now, how can I check whether it is actually there?

    Thanks

  • I think it's a column descriptor in master.sys.procedures;

    I've confirmed that my proc, which sets specific trace flags, shows up in my results:

    sp_set_traceflags --this is mine!

    sp_ssis_startup

    sp_MSrepl_startup

    SELECT *

    FROM master.sys.procedures

    WHERE [procedures].[is_auto_executed] = 1

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Thanks!

    It works for me as well.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply