I don't think this is possbile but I thought I would check. Is it possible to Alter a column from Nullable to Not Nullable w/o dropping and recreating the table? I'm coming a SQL Server background and there you can do the following....
ALTER TABLE TABLENAME ALTER COLUMN CNAME NOT NULL
As long as there are no values currently null in the table, this will work and is much faster than the alternative. Is there something that is similar or easier in DB2.
Thanks