标签: sql-server-2005
有没有人知道你是否可以通过SQL 2005中的链接服务器删除表上的约束
答案 0 :(得分:1)
Can you have a Foreign Key onto a View of a Linked Server table in SQLServer 2k5?
我会说你做不到。
答案 1 :(得分:1)
你可以,但你必须使用一些动态的SQL技巧来实现它。
declare @cmd VARCHAR(4000) SET @cmd = 'Use YourDatabase ALTER TABLE YourTable DROP CONSTRAINT YourConstraint' exec YourServer.master.dbo.sp_executesql @SQL