Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
List of tables
Message
 
 
To
08/06/2005 21:52:46
Joel Hokanson
Services Integration Group
Bellaire, Texas, United States
General information
Forum:
Microsoft SQL Server
Category:
Database design
Title:
Miscellaneous
Thread ID:
01021682
Message ID:
01021694
Views:
32
This message has been marked as the solution to the initial question of the thread.
>Is there a way to print a lits of the tables in a SQL database

In the Query Analyzer change result to Text or to File and Run following query
SELECT table_name 
	FROM northwind.INFORMATION_SCHEMA.TABLES
	WHERE table_type = 'BASE TABLE'
	ORDER BY 1
After that you can either print text result or the file created. You can also run Query with result to grid and then save result as CSV file.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform