Database Administration (MOSC)

MOSC Banner

SQL query for encrypted tablespaces and tables

Hi All -

We are trying to fulfill an auditing requirement where we are being asked to list out the encryption details of a particular application at the database level. Specifically, we need to provide the tablespace, table, and encryption method (algorithm).

We had tried this, but we aren't getting the encryption algorithm as part of the results. We'd appreciate any help to get the results, as required by the audit team

select table_name, tablespace_name from dba_tables where tablespace_name
in (select b.name from v$encrypted_tablespaces a, v$tablespace b
where a.TS# = b.TS#)
order by 2 desc;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center