Click here to Skip to main content
15,890,438 members
Articles / Database Development / SQL Server
Article

Simple bit of Transact SQL to help locate text in a database

Rate me:
Please Sign up or sign in to vote.
1.00/5 (2 votes)
12 Dec 2007CPOL 17.5K   61   12  
Simple bit of Transact SQL to help locate text in a database using cursors

Introduction

This was a littel bit of SQL I wrote to help in a migration project. Quite simply it will go through each table and row looking for your text. It it is found it displays the Table and then does a select of the table.

Background

The code makes use of system tables and Transact SQL Cursors

Using the code

Mainly this code is for interest. Open Management Studio (Or earlier versions), paste the code to a Query Session (logged into your desired database), and then select 'Execute'
SQL
sp_Find_String_In_Database 'Find Text'

Note: I have only tested this on 2005, it may need some touching up for 2000 and 7

Points of Interest

On the database I was working on this has (and does) save countless hours of sluthing. Hope it serves you well. Appologies for the pile of errors, they didn't worry me but may you.

History

Orriginal

License

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


Written By
Software Developer (Senior) Clear Rock Ltd
United Kingdom United Kingdom
Developing code since the Z80 now works in Southampton doing various projects including Web Applications in .Net. and extensivly using Transact SQL in all sorts of applications.

Apart from that Swimming, Cycling, and some Photography

Comments and Discussions

 
-- There are no messages in this forum --