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 |
|
vemulavijay
Starting Member
32 Posts |
Posted - 2006-01-19 : 09:41:19
|
| hi,i am looking for a query which gives me the list of user created tables in sql database. thanks,vemula vijay |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2006-01-19 : 09:45:58
|
| 1 Select name from sysobjects where xtype='u'2 Select table_name from information_Schema.tables where table_type='Base Table'MadhivananFailing to plan is Planning to fail |
 |
|
|
vemulavijay
Starting Member
32 Posts |
Posted - 2006-01-20 : 01:00:15
|
| Thanks very much madhivanan |
 |
|
|
|
|
|