Oracle8i Backup and Recovery Guide Release 8.1.5 A67773-01 |
|
To start the database from within the RMAN environment. This command is equivalent to using the SQL*Plus STARTUP command. You can:
See Also: To learn how to start up and shut down a database, see the Oracle8i Administrator's Guide. For SQL*Plus STARTUP syntax, see the SQL*Plus User's Guide and Reference.
If you do not specify any options, RMAN mounts and opens the database.
force |
executes either of these operations:
|
|
nomount |
starts the instance without mounting the database. |
|
mount |
starts the instance, then mounts the database without opening it. If you specify neither the mount nor nomount options, the startup command opens the database. |
|
dba |
restricts access to the database to users with the RESTRICTED SESSION privilege. |
|
pfile = filename |
specifies the filename of the |
This example starts and opens the database:
startup;
This example forces a shutdown abort and then mounts the database with restricted access, specifying a non-default parameter file location:
startup force mount dba pfile=t_init1.ora;