A script I often use to find unique records (and dupes) is the following:
select distinct Serial_num, count(*) from my_table
group by serial_num
order by 1;
This will list the field value and the number of recs with that value and it will order the output from lowest count to highest. If you...
You do need to delete registry entries. I never trust Oracle deinstall process in Windows. It removes programs and files but leaves several references in the registry. The new install may still find them being used or locked or something.
Please refer to Oracle MetaLink doc ID 124353.1. If...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.