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
 SQL Server 2000 Forums
 SQL Server Development (2000)
 List User Table using SQL DMO

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.Tables
WHERE TAble_Type='BASE TABLE'


Go with the flow & have fun! Else fight the flow :)
Go to Top of Page
   

- Advertisement -