Oracle8i Recovery Manager User's Guide and Reference Release 2 (8.1.6) Part Number A76990-01 |
|
Recovery Manager Command Syntax, 44 of 50
To shut down the target database without exiting RMAN. This command is equivalent to using the SQL*Plus SHUTDOWN statement.
See Also:
Oracle8i Administrator's Guide for information on how to start up and shut down a database, and SQL*Plus User's Guide and Reference for SHUTDOWN syntax. |
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:
shutdown abort; startup dba; shutdown; startup mount; # executing the above commands ensures that database is in proper state for noarchivelog # backup run { set duplex = 4; allocate channel dev1 type 'sbt_tape'; backup database; alter database open; }
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|