Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
List of tables
Message
 
 
À
08/06/2005 21:52:46
Joel Hokanson
Services Integration Group
Bellaire, Texas, États-Unis
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Conception bases de données
Titre:
Divers
Thread ID:
01021682
Message ID:
01021694
Vues:
30
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform