Alright Thanks Mufasa.
All .. One more Q' on Upsert , so called Merge..
How to trap exception errors ( value error, inserted value too long while inserting) in 9i Merge Statement..
Merge into tab1 a
using ( select col1, col2 from tab2) b
on (a.col1 = b.col1)
when matched then
update
set ...
when not matched then
insert...
How to trap the expections in Merge.. Is there a way or better to use the traditional Update/Insert vv..