Hi, Is there a way to identify Startup Stored Procedures?? Appreciate any help and thanks in advance.
select routine_name, objectproperty(object_id(routine_name),'execisstartup') from information_schema.routines where routine_type = 'procedure' and objectproperty(object_id(routine_name),'execisstartup') = 1