Skip to main content

Posts

Oracle Transparent Data Encryption (TDE)

Introduction Transparent Data Encryption (TDE) is Oracle's native encryption feature that protects sensitive data by encrypting it at rest. It automatically encrypts data before writing it to disk and transparently decrypts it for authorized users. Since encryption and decryption happen inside the Oracle Database engine, applications need no code changes, which makes TDE a seamless and efficient security solution. Oracle TDE supports two encryption methods: Tablespace Encryption : encrypts all data stored within a tablespace, offering broader and easier protection. Column Encryption : encrypts only selected sensitive columns. Prerequisites Oracle Database Enterprise Edition (TDE is not available in Standard Edition). Downtime for a database bounce to set WALLET_ROOT and open the keystore. A secure OS-level directory to hold the wallet, with restricted permissions. The wallet password recorded somewhere safe, since it's required for every future keystore open o...

Oracle 19.31 RU Patch on Oracle Restart via OPatchAuto

Introduction This article documents the end-to-end patching procedure for Oracle Database 19c Release Update (RU) 19.31 (39034528) in an Oracle Restart environment using OPatchAuto. OPatchAuto OPatchAuto is an Oracle utility designed to automate the patching process for Oracle Grid Infrastructure, Oracle Restart, and Oracle RAC environments. It handles the entire lifecycle from pre-checks and stopping services to applying binary updates, running root scripts, restarting services, and executing datapatch for SQL updates. OPatchAuto must be executed by the root user, as it needs privileged access to stop and start Oracle High Availability Services and perform root level configuration tasks. Prerequisites Plan a maintenance window with approximately 180 minutes of database downtime. Ensure a minimum of 15 GB of free space is available in both the Grid Infrastructure and Database home mount points. Additionally, reserve approximately 25 GB for the patch files and Oracle Home ...