December 13, 2016 at 9:24 am
I added a S.P. to startup process with sp_procoption. Now, how can I check whether it is actually there?
Thanks
December 13, 2016 at 9:28 am
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
December 13, 2016 at 9:40 am
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