Hi friends,

I have a big table like 40 million rows....I want to update it as fast as I could
without using redologs (logging) or rollback or temp etc. Is this possible?

Does this command help?

update table EMP nologging parallel 8 set fullname=upper(trim(fullname));


thanks a lot