Subject Re: Add NOT NULL constraint within transaction
Author davidlhoffman66
> You don't need a temporary column; just issue these two DDL statements
> and commit. Supposing the current column type is int:
>
> create domain intnn as int not null;
> alter table MyTable alter MyColumn type intnn;


Thanks, Paul, I appreciate the help.

Best-
-David