SQL Server provides three methods for searching stored procedures that contain a keyword.

Source: Internet
Author: User

Example 1

The code is as follows: Copy code

Select OBJECT_NAME (id), id from syscomments
Where id in
(Select object_id (name) from dbo. sysobjects where xtype = 'p'
)
And text like '% FieldName %'
Group by id

Example 2

In Database SQL Server 2005/2008, query stored procedure statements that contain a keyword:

The code is as follows: Copy code

Select distinct B. name
From dbo. syscomments a, dbo. sysobjects B
Where a. id = B. id and B. xtype = 'p' and a. text like '% text %'
Order by name

Example 3

Keyword search related stored procedures, triggers, functions, and views

The code is as follows: Copy code

Select name, type_desc from sys. all_ SQL _modules s inner join sys. all_objects o on s. object_id = o. object_id where definition like '% keyword % 'Order by type_desc, name

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.