Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find field in a SQL Server 2005 DB 1

Status
Not open for further replies.

rahulroy08

Programmer
Jul 3, 2007
58
US
Hi,

I'm looking for a particular field "Booking Role" and "Title" in my SQL Server 2005 DB. I'm not sure in which table it is. Can someone help me with the easiest and the quickest possible way to find the field from a huge DB with many tables.

Your help is appreciated.


Rahul.
 
Code:
Select * 
From   Information_Schema.Columns 
Where  Column_Name = 'Booking Role'

-George

"the screen with the little boxes in the window." - Moron
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top