I have a table in SQL Server and underneath, there is a constraints folder. How can I view the constraints in that folder? I didn’t see a modify constraint to where I can view it.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What do you mean by modify constraint ??
If you’re talking about SQL Server Management Studio and its Object Explorer – you can right-click on the
Constraintsnode for any given table and chooseAdd constraint– is that what you’re looking for??If you want to change an existing constraint. you need to click on that constraint and typically you need to script that out to drop and then re-create that constraint
You cannot just modify it “in place” (there’s no
Modify Constraintdialog box or anything like that).