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.
| Author |
Topic |
|
sumitarora
Starting Member
2 Posts |
Posted - 2005-09-04 : 13:51:28
|
| can anyone tell the query to describe the structure of table and view tables in my database |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2005-09-04 : 13:53:29
|
| SELECT * FROM INFORMATION_SCHEMA.TABLES -- table and view informationSELECT * FROM INFORMATION_SCHEMA.COLUMNS -- column info |
 |
|
|
|
|
|