Comments and notes on SQL Server 2000, 2005, and T-SQL
Browse by Tags
All Tags »
syscolumns sysobjects (
RSS)
Sorry, but there are no more tags available to filter with.
-
|
It is occasionally necessary to find all the occurrences of a field name in a SQL Server database. This script will seacrh the database and return all the tables that contain a certain field name. select sysobjects.name from syscolumns left join sysobjects...
|