Question : SQL Server 2008 - SEARCH for a Database Table FIELD>..???

Experts,

I seem to recall that I was able to search for a single database table FIELD in SQL Server 2000 by the field name.

Was I just dreaming this and the bigger question is Can I search for a single database table FIELD in SQL Server 2008???

Answer : SQL Server 2008 - SEARCH for a Database Table FIELD>..???

select TABLE_NAME, COLUMN_NAME
from INFORMATION_SCHEMA.COLUMNS
where COLUMN_NAME = 'Something'
Random Solutions  
 
programming4us programming4us