I need to change a default constraint value from 0 to 1. This is done easy with:
ALTER TABLE table DROP CONSTRAINT X
ALTER TABLE table ADD CONSTRAINT X default (1) for table.column
The problem is that I don't want to drop and create a new constraint every time I run modelupdate on my database. That's why I want to run this code IF the value of the constraint is 0.
Is it possible to check the value of a default constraint in SQL, if yes, how?
You can find the "definition" of the default constraint like this:
That however will be returning a string representation of your default value - not the actual value itself (in whatever datatype it is). But that might help you find what you need