批量插入數據字典的方法,做個記錄吧

 declare @TableName varchar(20),

@TableField varchar(20),
@FieldType varchar(20),
@FieldId varchar(10),
@Des varchar(100)
declare AddDetail cursor for
SELECT d.name , a.name,b.name, CONVERT(varchar(100),g.[value])
FROM syscolumns a
left join systypes b on a.xusertype=b.xusertype
inner join sysobjects d on a.id=d.id and d.xtype='U' and d.name<>'dtproperties'
left join syscomments e on a.cdefault=e.id
left join sys.extended_properties g on a.id=g.major_id and a.colid=g.minor_id
left join sys.extended_properties f on d.id=f.major_id and f.minor_id=0
where d.name='T_ProductionPlan' --如果只查詢指定表,加上此條件
order by a.id,a.colorder

open addDetail

fetch next from addDetail into @TableName,@TableField,@FieldType,@Des
while @@FETCH_STATUS=0
begin
insert into Tbl_Dic_CreateDetail(TableTag,TableName,FieldName,XTYpe,DisPlayCaption)
values(2130,@TableName,@TableField,@FieldType,@Des)
fetch next from addDetail into @TableName,@TableField,@FieldType,@Des
end
close addDetail
deallocate addDetail

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章