Basically I am performing the following against a table with millions of rows in it and it is taking quite a long time.
EXECUTE IMMEDIATE 'ALTER TABLE <tablename> MODIFY UPPER(column) NVARCHAR2(60)'
Do you have any opinions of how to speed this process up? I am not sure how oracle is handling this in the background so other than dropping indexes and recreating after the command I can't think of anything else.
Is there a lot of logging going on?
Would exporting data out and then reimporting it be quicker?
Any opinions would be greatly appreciated.
Thanks
JOBA
EXECUTE IMMEDIATE 'ALTER TABLE <tablename> MODIFY UPPER(column) NVARCHAR2(60)'
Do you have any opinions of how to speed this process up? I am not sure how oracle is handling this in the background so other than dropping indexes and recreating after the command I can't think of anything else.
Is there a lot of logging going on?
Would exporting data out and then reimporting it be quicker?
Any opinions would be greatly appreciated.
Thanks
JOBA