Start and stop the database using SRVCTL utility

Stop and start db using SRVCTL

Start the DB with SRVCTL commands

-- SYNTAX FOR START DB
srvctl start database -d db_name [-o start_options] 
where start_option is nomount/mount/open(default)
e.g
srvctl start database -d PRODB -o nomount
srvctl start database -d PRODB -o mount
srvctl start database -d PRODB -o open

Stop the DB with SRVCTL Commands

-- SYNTAX FOR STOP DB
srvctl stop database -d db_name [-o stop_options] 
where stop_options is normal/immediate(default)/transactional/abort
e.g
srvctl stop database -d PRODB -o normal
srvctl stop database -d PRODB -o immediate
srvctl stop database -d PRODB -o transactional
srvctl stop database -d PRODB -o abort

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.