Hi Experts
I have a very big table.
And I have filled one column and I need to set this column to NOT NULL.
The statement is:
ALTER TABLE OMG.OMG_BUSINESS_PLAN MODIFY (X_TRANSAKTION NOT NULL)
/
But it does not run parallel.
I executed this one before the above statement but it does NOT HELP:
ALTER SESSION FORCE PARALLEL DDL PARALLEL 16
/
As I see, the statement ALTER TABLE is running serial and it takes much time.
Could you tell me how I could run it parallel?
Thanks in advance, Hans