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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

object search in SQL Server 2005 1

Status
Not open for further replies.

stanja

MIS
Sep 10, 2001
149
BE
Hello ,

At sql server 2000 you can do in Query analyzer an object search (fe a column name) by the F4 key.
How can i perform this search in SQL server 2005 (server managament studio) ?

tx
grtz

Steven
 
If you need to find a column in SQL Server 2005 use the information schema

select *
from information_schema.columns
where column_name = 'ProductID'

- Paul
- Database performance looks fine, it must be the Network!
 
You can also use the sys.columns and sys.tables views.

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top