Oracle 12c. Is it possible to export a TDE encrypted table using expdp / impdp to a database without TDE / wallet enabled?

dba.stackexchange https://dba.stackexchange.com/questions/259198

Вопрос

I have an Oracle 12c database where I have encrypted certain columns of several tables, I want to import or load these tables into another database which does not have TDE enabled, as would be recommended with datapump? or dblink? And if it were the last one, could it be done without having TDE in the destination? thanks

Это было полезно?

Решение

TDE encrypts the data at rest only. As soon as the data is read off the disk, it is decrypted. So if you need to copy the data to a new database instance you can just do a CTAS or IAS over the db link. You should be able to use datapump also, but you have db link between the two database it is the easiest solution.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с dba.stackexchange
scroll top