I'm in SQL 2008/R2. I want to run a query to see if there is a SQL Agent job calling a specified stored proc (there are too many to inspect manually).
相关问题
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
- Get path of node in tree
- How to evaluate an input in the WHERE clause
- Delete all records in table which have no referenc
相关文章
- How to truncate seconds in TSQL?
- Code for inserting data into SQL Server database u
- SQL Server 2008 Change Data Capture, who made the
- How do we alias a Sql Server instance name used in
- SQL identity (1,1) starting at 0
- How to do a UNION on a single table?
- SQL Group by Count of Counts
- SQL Server drop and recreate indexes of a table
Here is a query that will give you that and more (look at the
WHERE
clause for the stored proc name):Credit should go to the article Querying SQL Server Agent Job Information by Dattatrey Sindol for most of the above query.
You can use this query -
There's alternative to find all procedures called by all jobs inside a specific instance: