那 Data Dictionary Creator 這個工具一定要下載來用.
方便你建立額外的自定義屬性例如中文名稱,備註,tooltips等等
他預設會顯示MS_Description這個屬性, 如果你有一些自定義屬性也要顯示,
則在Advanced Setting頁籤中,指定這些額外屬性名稱,如下圖,多個屬性用逗點隔開
接著在DocumentDatabase頁籤中,就會出現這些額外屬性的定義了.如下圖:
真方便.
select a.name,b.column_id,b.name,d.value,d.name
,c.name,c.xtype,b.max_length,b.is_nullable
from sys.tables a inner join sys.columns b
on a.object_id = b.object_id inner join sys.systypes c
on b.system_type_id = c.xusertype left outer join sys.extended_properties d
on a.object_id = d.major_id and b.column_id = d.minor_id
order by a.name,b.column_id
,c.name,c.xtype,b.max_length,b.is_nullable
from sys.tables a inner join sys.columns b
on a.object_id = b.object_id inner join sys.systypes c
on b.system_type_id = c.xusertype left outer join sys.extended_properties d
on a.object_id = d.major_id and b.column_id = d.minor_id
order by a.name,b.column_id
這樣也是可以讀取到所有的欄位及屬性
沒有留言:
張貼留言