| Oracle9i Recovery Manager Reference Release 1 (9.0.1) Part Number A90136-02 |
|
RMAN Commands , 53 of 60

To shut down the target database without exiting RMAN. This command is equivalent to using the SQL*Plus SHUTDOWN statement.
|
See Also:
Oracle9i Database Administrator's Guide for information on how to start up and shut down a database, and SQL*Plus User's Guide and Reference for |
RUN command.
SHUTDOWN command to shut down the recovery catalog database. To shut down this database, start a SQL*Plus session and issue a SHUTDOWN statement.
NORMAL, TRANSACTIONAL, and IMMEDIATE options all perform a clean close of the database. The ABORT option does not cleanly close the database; Oracle will perform instance recovery at startup.
NOARCHIVELOG mode, then you must shut down the database cleanly and then issue a STARTUP MOUNT before a making a backup.
This example waits for current SQL transactions to be processed before shutting down, then mounts the database:
SHUTDOWN IMMEDIATE; STARTUP MOUNT;
This example backs up a database running in NOARCHIVELOG mode:
STARTUP FORCE DBA; SHUTDOWN IMMEDIATE; STARTUP MOUNT; # executing the above commands ensures that database is in proper state for NOARCHIVELOG # backup BACKUP COPIES 2 DATABASE; ALTER DATABASE OPEN;
|
|
![]() Copyright © 1996-2001, Oracle Corporation. All Rights Reserved. |
|