2012年2月8日 星期三

獲取SQL數據庫中的數據庫名、所有表名、所有字段名、列描述


[轉]獲取SQL數據庫中的數據庫名、所有表名、所有字段名、列描述
1.獲取所有數據庫名:
   (1)、Select Name FROM Master.dbo.SysDatabases orDER BY Name
2.獲取所有表名:
   (1)、Select Name FROM SysObjects Where XType='U' orDER BY Name
           XType='U':表示所有用戶表;
           XType='S':表示所有系統表;
   (2)、SELECT name FROM sysobjects WHERE type = 'U' AND sysstat = '83'
           注意:一般情況只需要type = 'U',但有時候會有系統表混在其中(不知道什麼原因),加上後面一句後就能刪除這些系統表了

3.獲取所有字段名:
(1)、Select Name FROM SysColumns Where id=Object_Id('TableName')
(2)、SELECT syscolumns.name,systypes.name,syscolumns.isnullable,syscolumns.length FROM syscolumns, systypes WHERE syscolumns.xusertype = systypes.xusertype AND "syscolumns.id = object_id('tableName')
       注意點:
     (a)這裡為了重點突出某些重要內容,選取了其中幾項信息輸出。
     (b)syscolumns表中只含有數據類型編號,要獲取完整的名字需要從systypes表中找,一般用戶使用的數據類型用xusertype對應比較好,不會出現一對多的情況。
     (c)syscolumns.length得到的是物理內存的長度,所以nvarchar和varchar等類型在數據庫中的顯示是這個的一半。

4、得到表中主鍵所包含的列名:
SELECT syscolumns.name FROM syscolumns,sysobjects,sysindexes,sysindexkeys WHERE syscolumns.id = object_id('tablename') AND sysobjects.xtype = 'PK' AND sysobjects.parent_obj = syscolumns.id AND sysindexes.id = syscolumns.id AND sysobjects.name = sysindexes.name AND sysindexkeys.id = syscolumns.id AND sysindexkeys.indid = sysindexes.indid AND syscolumns.colid = sysindexkeys.colid
注意:這是在4張系統表中尋找的,關係比較複雜,大致可以表示為:
syscolumns中存有表中的列信息和表id,sysobjects表中存有主鍵名字(即PK_Table類似)和表id,sysindexes中存有主鍵名字和表id和index編號,sysindexkeys中存有表id和index編號和列編號,一項一項對應起來後就能找到列名了,呼~

5、得到表中列的描述內容:
select a.name,g.value from syscolumns as a    left join sysproperties g   on a.id=g.id AND a.colid = g.smallid    where a.id='表id'


自己測試過的
獲取表的基本字段屬性
--獲取SqlServer中表結構
SELECT syscolumns.name,systypes.name,syscolumns.isnullable,
syscolumns.length
FROM syscolumns, systypes
WHERE syscolumns.xusertype = systypes.xusertype
AND syscolumns.id = object_id('你的表名')


如果還想要獲取字段的描述信息則
--獲取SqlServer中表結構 主鍵,及描述
declare @table_name as varchar(max)
set @table_name = '你的表名'
select sys.columns.name, sys.types.name, sys.columns.max_length, sys.columns.is_nullable,
(select count(*) from sys.identity_columns where sys.identity_columns.object_id = sys.columns.object_id and sys.columns.column_id = sys.identity_columns.column_id) as is_identity ,
(select value from sys.extended_properties where sys.extended_properties.major_id = sys.columns.object_id and sys.extended_properties.minor_id = sys.columns.column_id) as description
from sys.columns, sys.tables, sys.types where sys.columns.object_id = sys.tables.object_id and sys.columns.system_type_id=sys.types.system_type_id and sys.tables.name=@table_name order by sys.columns.column_id
複製代碼
單獨查詢表的遞增字段
--單獨查詢表遞增字段
select [name] from syscolumns where
id=object_id(N'你的表名') and COLUMNPROPERTY(id,name,'IsIdentity')=1
複製代碼
獲取表的主外鍵
--獲取表主外鍵約束
exec sp_helpconstraint '你的表名' ;

沒有留言:

張貼留言