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 |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2005-09-19 : 07:43:56
|
| shashi writes "how to see all the tables in the database in sql using a single query?" |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-09-19 : 07:47:59
|
| Select Table_name from Information_Schema.Tables where table_type='Base Table'order by Table_nameMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|