dbaascli listener stop

The listener stop subcommand of the dbaascli utility is used to stop the listener. Execute this command as the oracle user. dbaascli listener stop

Read More

dbaascli listener bounce

The listener bounce subcommand of the dbaascli utility is used to stop and restart the listener. Execute this command as the oracle user. dbaascli listener bounce

Read More

dbaascli listener start

The listener start subcommand of the dbaascli utility is used to start the listener. Execute this command as the oracle user. dbaascli listener start

Read More

dbaascli listener status

The listener status subcommand of the dbaascli utility is used to obtain information about the status of the listener. Execute this command as the oracle user. dbaascli listener status

Read More

dbaascli dataguard reinstate

The dataguard reinstate subcommand of the dbaascli utility is used to reinstate a failed primary database as a standby database after a failover. Execute this command as the oracle user. dbaascli dataguard reinstate [–password password]

Read More

dbaascli dataguard failover

The dataguard failover subcommand of the dbaascli utility is used to perform a manual failover to the standby database in your Oracle Data Guard configuration. Execute this command as the oracle user. dbaascli dataguard failover [–force yes|no] [–password password]

Read More

dbaascli dataguard switchover

The dataguard switchover subcommand of the dbaascli utility is used to perform a switchover to the standby database in your Oracle Data Guard configuration. Execute this command as the oracle user. dbaascli dataguard switchover [–password password]

Read More

dbaascli dataguard status

The dataguard status subcommand of the dbaascli utility is used to check the status of the Oracle Data Guard configuration. Execute this command as the oracle user. dbaascli dataguard status [–details yes|no]

Read More

Size of Oracle Database

select ( select sum(bytes)/1024/1024/1024 data_size from dba_data_files ) + ( select nvl(sum(bytes),0)/1024/1024/1024 temp_size from dba_temp_files ) + ( select sum(bytes)/1024/1024/1024 redo_size from sys.v_$log ) + ( select sum(BLOCK_SIZE*FILE_SIZE_BLKS)/1024/1024/1024 controlfile_size from v$controlfile) “Size in GB” from dual;

Read More

dbaascli database stop

The database stop subcommand of the dbaascli utility can be used to shut down the database. Execute this command as the oracle user. dbaascli database stop

Read More