Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 sql metadata

Author  Topic 

anjali5
Posting Yak Master

121 Posts

Posted - 2015-04-17 : 12:12:25
Hi All,

is it possible to find out all the data about the table so I need Table columns, type etc.

James K
Master Smack Fu Yak Hacker

3873 Posts

Posted - 2015-04-17 : 12:13:57
[code]SELECT * FROM sys.columns WHERE OBJECT_NAME(object_id) = 'YourTableNameHere';[/code]
Go to Top of Page
   

- Advertisement -