Home > Database > Oracle > body text

oracle database start and stop commands

下次还敢
Release: 2024-05-10 01:42:17
Original
819 people have browsed it

Start Oracle database: Use the command $ORACLE_HOME/bin/sqlplus /nolog to connect to the database. Log in using the command connect / as sysdba. Start the database using the command startup. Stop the Oracle database: Connect to the database using the command $ORACLE_HOME/bin/sqlplus /nolog. Log in using the command connect / as sysdba. Stop the database using the shutdown command.

oracle database start and stop commands

Oracle database start and stop commands

Start Oracle database

To start the Oracle database, use the following command:

$ORACLE_HOME/bin/sqlplus /nolog
Copy after login
Copy after login

Then, use the following command to connect to the database and start it:

connect / as sysdba
startup
Copy after login

Stop the Oracle database

To stop the Oracle database, use the following command:

$ORACLE_HOME/bin/sqlplus /nolog
Copy after login
Copy after login

Then, use the following command to connect to the database and stop it:

connect / as sysdba
shutdown
Copy after login

Additional options

In addition to the basic start and stop commands, there are a few other options available to control the behavior of the database:

  • Startup mode: You can use the STARTUP statement Specify different launch modes, such as NOMOUNT, MOUNT, and OPEN.
  • Forced stop: If you cannot shut down the database normally, you can use the ABORT or IMMEDIATE option of the SHUTDOWN statement to force it Stop it.
  • Restart: You can restart the database by first shutting down the database and then restarting it.
  • Using scripts: You can create script files to automate the process of starting and stopping a database.

The above is the detailed content of oracle database start and stop commands. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!