Click here to Skip to main content
15,881,710 members
Articles / Mobile Apps / Windows Mobile
Tip/Trick

How to Find a Text in SQL Server Stored Procedure

Rate me:
Please Sign up or sign in to vote.
4.00/5 (3 votes)
30 Jun 2012CPOL 37.1K   4   1
This article describes How to find a Text in Stored Procedure (Checked on SQL Server 2008)

Introduction

This article describes How to find a Text in Stored Procedure (Checked on SQL Server 2008)

Background

Need to delete or rename a Column Name in Table? 100's of Stored Procedures? Running short on time? Constraints may save you by generating an warning but Stored Procedure Won't!

Here is an awesome Trick that may save your time!

This applies to non encrypted stored procedues only.

  • Open SQL Server Management Studio
  • Make sure that you have permission to access the database objects
  • Select the Database which has Stored Procedure in which you need to find Text
  • Click on New Query
  • Below query searches for Text Product and Order [You can use AND or OR and more]

Using the code

SQL
SELECT Name as [Stored Procedure Name]
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%Product%'
AND OBJECT_DEFINITION(OBJECT_ID) LIKE '%Code%'

Screen Shot

 

I am working on Find and Replace version of above example once done will post here. Enjoy

This article was posted on my blog http://www.smartcodar.com/content.php?124-How-to-Find-a-Text-in-SQL-Server-Stored-Procedure added here with some enhancement

This article was originally posted at http://www.smartcodar.com/content.php

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
I am a Tech Lead / .Net Architect,

I love working with Business Challenges, Requirements

I work mainly for Designing eCommerce Portals Using ASP.Net enabled Frameworks such as Mediachase, zNode and Storefront.

I love writing my Articles at Code Project and my site www.SmartCodar.com.

Comments and Discussions

 
GeneralMy vote of 3 Pin
Corvus Corax8-Apr-13 6:47
Corvus Corax8-Apr-13 6:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.