SELECT c.NAME AS 'ColumnName',
t.NAME AS 'TableName'
FROM sys.columns c
JOIN sys.tables t
ON c.object_id = t.object_id
WHERE c.NAME LIKE '%ColumnName%'
ORDER BY tablename,
columnname;
Subscribe to:
Post Comments (Atom)
SQL Audits
1. sys.server_audits What it is: Lists all server-level audit objects . An audit is the top-level object that defines: Where to wri...
-
This Error happens because a .NET exception has occurred at WCF service server side. Due to this error Communication Object (or Proxy Class...
-
While using Entity framework, for the above error you had to open your .edmx file with Notepad and edit <Scheme> tag inside <edm...
-
Hello Everyone !!! There are times when you need to run a SQL command against each database on one of my SQL Server instances. There is a ...
No comments:
Post a Comment