Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to get list of user defined table from the database
Message
 
 
À
25/06/2007 12:13:00
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2000
Divers
Thread ID:
01235373
Message ID:
01235375
Vues:
14
>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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform