The document contains Oracle SQL commands to shutdown an Oracle database immediately, force a startup in DBA mode, mount the database, enable encryption with a password, backup the database to tape, and open the database.
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
21 views
Rman DB Backup
The document contains Oracle SQL commands to shutdown an Oracle database immediately, force a startup in DBA mode, mount the database, enable encryption with a password, backup the database to tape, and open the database.
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
connect target /
SHUTDOWN IMMEDIATE; STARTUP FORCE DBA; SHUTDOWN IMMEDIATE; STARTUP MOUNT; SET ENCRYPTION ON IDENTIFIED BY 'Welcome1'; BACKUP DEVICE TYPE sbt DATABASE; ALTER DATABASE OPEN; exit;