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 |
|
nlbnalin
Starting Member
6 Posts |
Posted - 2004-08-09 : 07:10:54
|
| By oTable.Script We can get the table in the database. But I want to get only user created table. I am Using this on VB. Please help ME |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2004-08-09 : 10:07:55
|
| SELECT *FROM INFORMATION_SCHEMA.TablesWHERE TAble_Type='BASE TABLE'Go with the flow & have fun! Else fight the flow :) |
 |
|
|
|
|
|