Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get list of user defined table from the database
Message
 
 
To
25/06/2007 12:13:00
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01235373
Message ID:
01235375
Views:
15
>how to get list of user defined table from the database

You can uses information schema which conforms to SQL-92 Standard.
SELECT * From INFORMATION_SCHEMA.TABLES 
	WHERE table_type = 'BASE TABLE'
		AND table_name <> 'dtproperties'
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform