本文介绍了如何生成所有约束脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个要求,我必须更改我的数据库的排序规则,因为我需要 drop所有约束并在我的数据库中运行整理更改脚本后重新创建它们.我可以知道如何生成数据库所有约束的脚本吗?
I have a requirement where I have to change collation of my DB for that I need to drop all the constraints and recreate them after running the collation change script at my DB. May I know how can I generatescript of all constraints of my DB?
推荐答案
SELECT top 1
'ALTER TABLE '+ SCHEMA_NAME(schema_id) + '.' + OBJECT_NAME(parent_object_id) +
' ADD CONSTRAINT ' + dc.name + ' DEFAULT(' + definition
+ ') FOR ' + c.name
FROM sys.default_constraints dc
INNER JOIN sys.columns c ON dc.parent_object_id = c.object_id AND dc.parent_column_id = c.column_id
生成所有约束的脚本
SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
获取 db 上的所有约束,然后过滤您的表
get all constraints on db then filter on your table
这篇关于如何生成所有约束脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!