find the all the stored procedures and jobs in sql server 2000
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-05-07T06:17:00Z
Indexed on
2010/05/07
6:38 UTC
Read the original article
Hit count: 310
Hi,
In SQL SERVER 2005 This query works fine : Select * from sys.procedures where object_definition(object_id) like '%J%' SELECT * FROM MSDB.DBO.SYSJOBS WHERE NAME LIKE '%J%'
but in sql server 2000 it is not working. Here i need to find the all the stored procedures and jobs which matches my string ? how to find in sql server 2000 ?
regards, kumar
© Stack Overflow or respective owner