I have a column in my DB which is currently defined as NOT NULL. I would like to update this column to allow NULLs.
I have the following script to do this however I would like to check first if the column is already NULL (or NOT NULL), as it may have been changed previously.
ALTER TABLE [dbo].[aud] ALTER COLUMN [actname] nvarchar(50) NULL Any help appreciated.