I know the syntax:
ALTER TABLE [TheTable] DROP CONSTRAINT [TheDefaultConstraint]
but how to I drop the default constraint when I don\'t kno
You can find the name of the constraint out by sp_help [table name] and then drop it by name.
Or you can probably do this via Management studio.