You just have finalized your old question. Thanks for your points. This gives me possibility to go back to the history of your current question.
So, your data are encrypted. I will not ask you how, because I realize that this is confidential.
If you use DES or DES3 provided by DBMS_OBFUSCATION_TOOLKIT there is no chance to decrypt on 9i data encrypted on 8i.
DES is American Standart since 1974, but the programming details in every Oracle version are different.
So by the migration you should migrate the data decrypted in additional tables (if they are not row, i.e. hexadec. data).
Only after migration you have to encrypt them again and TRUNCATE the intermediate tables in order do not register the decrypted table contents in archived redo log files.
Main Topics
Browse All Topics





by: schwertnerPosted on 2005-01-28 at 06:45:03ID: 13163494
If the characters are encrypted you should decrypt them before sending to the client. Or this can be done on the client side.
The main problem is how you migrate to 9i. Were the data encrypted by the migration. If they were encrypted, they will not be converted to UTF8 for obvious reason - they are not legal characters.
If you migrate using Export/Import did you set NLS_LANG=.UTF on both machines?