Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Detecting Advanced Security through database tables

456161Apr 22 2009 — edited Apr 25 2009
Hi,

I would like to be able to check if Advanced Security is being used by running scripts. I have the scripts for 10g and above as shown below.

Does anyone know the equivalent scripts in 9i and 8i which I can use to perform the same function? specifically, the network_service_banner, equivalent DBA_ENCRYPTED_COLUMNS table and the equivalent ENCRYPTED column.

Thank you!!
Ellice

For network encryption and strong authentication
select count(*) from v$session_connect_info where network_service_banner in 'authentication service, encryption service, crypto_checksumming';

if > 0, network encryption and/or authentication is in use.

To see if TDE column encryption is used
'select count(*) from dba_encrypted_columns;'
returns more than zero rows.

To see if TDE tablespace encryption is used
'select count(*) from dba_tablespaces where encrypted ='YES';'
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 23 2009
Added on Apr 22 2009
2 comments
3,217 views