nerdexam
Oracle

1Z0-116 · Question #19

Which two statements are true about column-level transparent data encryption?

The correct answer is D. Column level encrypted data remains encrypted in the buffer cache. E. Column-level encryption keys are not encrypted by the master key. D is correct because column-level TDE encrypts and decrypts data at the SQL layer, meaning the data stays encrypted while residing in the buffer cache - unlike tablespace-level TDE, where decryption happens at the I/O layer and the buffer cache holds plaintext. E is correct…

Implementing Encryption

Question

Which two statements are true about column-level transparent data encryption?

Options

  • AIt can bo used for tables in encrypted tablcspaces.
  • Bencrypted columns cannot have an Index.
  • CAll encrypted columns of a table use the same encryption key.
  • DColumn level encrypted data remains encrypted in the buffer cache.
  • EColumn-level encryption keys are not encrypted by the master key.

How the community answered

(39 responses)
  • A
    13% (5)
  • B
    8% (3)
  • C
    28% (11)
  • D
    51% (20)

Explanation

D is correct because column-level TDE encrypts and decrypts data at the SQL layer, meaning the data stays encrypted while residing in the buffer cache - unlike tablespace-level TDE, where decryption happens at the I/O layer and the buffer cache holds plaintext.

E is correct because column-level encryption keys have their own protection model: they are stored in the encrypted data dictionary using a key derived independently from the standard tablespace master key hierarchy. This is a key architectural difference from tablespace TDE, which uses a direct master key → data key chain.

Why the distractors are wrong:

  • A - Column-level encryption and tablespace-level encryption are mutually exclusive; you cannot apply column encryption to tables already residing in an encrypted tablespace.
  • B - Indexes are permitted on TDE-encrypted columns; Oracle supports equality-based lookups on them (range scans are limited, but indexes themselves are allowed).
  • C - Each column gets its own independent encryption key; columns within the same table can even use different algorithms and keys.

Memory tip: Think of column-level TDE as "encryption that never lets its guard down" - the data stays encrypted all the way up to the buffer cache (D), and the keys are self-managed rather than handed off to the master key (E).

Topics

#Column-Level Encryption#Buffer Cache Security#Encryption Key Management#Transparent Data Encryption

Community Discussion

No community discussion yet for this question.

Full 1Z0-116 Practice