Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know if you can drop a constraint on a table via a linked server in SQL 2005

share|improve this question

2 Answers

You can, but you have to use some dynamic SQL trickery to make it happen.

declare @cmd VARCHAR(4000)
SET @cmd = 'Use YourDatabase
ALTER TABLE YourTable
DROP CONSTRAINT YourConstraint'

exec YourServer.master.dbo.sp_executesql @SQL
share|improve this answer
Very late but this is genious, Finally found what I needed – Jorge Guzman Jun 4 '12 at 19:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.