2010-06-23 9 views

Répondre

1

Vous pouvez obtenir beaucoup d'infos par les requêtes suivantes:

SELECT * FROM sys.databases 

use Northwind 

select * from sys.objects where type_desc = 'USER_TABLE' 

SELECT t1.name [table], t2.* 
FROM sys.objects t1 
     inner join sys.columns t2 on t1.object_id = t2.object_id 
where type_desc = 'USER_TABLE' 

sp_help 'Customers' -- Customers = tablename 
Questions connexes