Search: For:
Browsing Single Category

ASKTOM - Transparent Data Encryption

Topic ID: 646
Created By: 2005-NOV-16 15:04:19 [Vitaliy]
Updated By: 2007-JAN-22 09:19:07 [Vitaliy]
Status: Open
Severity: Normal
Read Only: No
3017
2005-NOV-16 15:04:19
Moderator
 
 
Registered On: Mar 2006
Total Posts: 195
ASKTOM - Transparent Data Encryption

REFERENCE:
   http://asktom.oracle...ON_ID:44742967463133
   http://download-east...otrans.htm#sthref142
[edited by: Vitaliy at 09:18 (CST) on Jan. 22, 2007]
3018
2005-NOV-16 15:06:14
Moderator
 
 
Registered On: Mar 2006
Total Posts: 195
ALTER SYSTEM SET ENCRYPTION KEY IDENTIFIED BY password
ALTER SYSTEM SET WALLET OPEN IDENTIFIED BY password

CREATE TABLE table_name ( column_name column_type ENCRYPT,....);
ALTER TABLE table_name MODIFY ( column_name column_type ENCRYPT,...);
ALTER SYSTEM SET WALLET CLOSE

Using an external security module separates ordinary program functions from 
encryption operations, making it possible to divide duties between database 
administrators and security administrators. Security is enhanced because no 
single administrator is granted complete access to all data.

REFERENCE:
   http://download-east...otrans.htm#sthref142
[edited by: Vitaliy at 09:19 (CST) on Jan. 22, 2007]