I have an existing program deployed where some customer databases have a field set to not null, while others are nullable. I need to run a patch to correct the database so that the column is nullable but do not need to run it against all databases, just ones where it is incorrect. Is there a simple method that can be used in SQL Server to perform this check? Preferably something that can be run as part of a SQL script.
|
1
|
|
|
|
|
|
Look into the INFORMATION_SCHEMA views. For example:
IS_NULLABLE will be either "YES" or "NO". |
||
|
|
|
|
Will get you that info |
||||||||||||||
|
|
|
|
||||
|
