Skip to main content

Posts

Configure a Cascaded Standby Database in Oracle 26ai

Introduction A Cascaded Standby Database is an Oracle Data Guard configuration in which a standby database receives redo from another standby database instead of directly from the primary database. The intermediate standby acts as a relay, receiving redo from the primary and forwarding it to one or more downstream standby databases. A Cascaded Standby helps scale Oracle Data Guard environments by allowing one standby database to distribute redo to downstream standbys. This reduces the number of direct redo connections from the primary database. This setup builds directly on the standby configuration methods we've covered before, specifically RMAN backup and restore , RMAN Duplicate , and restoring from the primary's service . Here we use RMAN Duplicate twice in sequence, once from the primary to build the intermediate standby, and again from that intermediate standby to build the downstream one, so it's worth being familiar with that method first if you haven't set ...

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...