Open Wallet Automatically After Starting The Database
If encryption wallet is enabled, then everytime we start the database, we have to open the wallet manually.
oracle configurationintermediate
by OracleDba
13 views
If encryption wallet is enabled, then everytime we start the database, we have to open the wallet manually.
12345678
CREATE or replace TRIGGER OPEN_WALLET
AFTER STARTUP ON DATABASE
BEGIN
--execute immediate 'ALTER SYSTEM SET ENCRYPTION WALLET CLOSE identified by âpasswordâ';
--execute immediate 'ALTER SYSTEM SET ENCRYPTION KEY IDENTIFIED BY âpasswordâ';
execute immediate 'ALTER SYSTEM SET ENCRYPTION WALLET OPEN identified by âpasswordâ';
END;
/Please to add comments
No comments yet. Be the first to comment!