how to displays the procedures currently running at startup on sql sql server 2000 ?

  • Thread starter Thread starter zoltix
  • Start date Start date
This is the solution

select * from sysobjects where (OBJECTPROPERTY(id, N'ExecIsStartup') =
1)
 
Back
Top