Assuming a RAC database called ORCL, select three statements that correctly demonstrate management actions for the AP service.

Assuming a RAC database called ORCL, select three statements that correctly demonstrate
management actions for the AP service.

Assuming a RAC database called ORCL, select three statements that correctly demonstrate
management actions for the AP service.

A.
To start the AP service, execute:
srvctl start service -d ORCL -s AP

B.
To disable the AP service on the ORCL4 instance, execute:
srvctl disable service -d ORCL -s AP -i ORCL4

C.
To stop the AP service, execute:
srvctl stop service -s AP

D.
To make ORCL5 a preferred instance for the AP service, execute:
srvctl set service -d ORCL -s AP -i ORCL5 -r

E.
To relocate the AP service from the ORCL5 instance to the ORCL4 instance, execute:
srvctl relocate service -d ORCL -s AP -i ORCL5 -t ORCL4

Explanation:
SRVCTL Command Reference
srvctl start service -d db_unique_name
[-s “service_name_list” [-n node_name | -i instance_name]]
[-o start_options]
srvctl disable service -d db_unique_name
-s “service_name_list” [-i instance_name | -n node_name]
srvctl stop service -d db_unique_name [-s “service_name_list”
[-n node_name | -i instance_name] [-f]
srvctl relocate service -d db_unique_name -s service_name
{-c source_node -n target_node | -i old_instance_name -t new_instance_name}
[-f]
Oracle Real Application Clusters Administration and Deployment Guide
11g Release 2 (11.2)



Leave a Reply 1

Your email address will not be published. Required fields are marked *


L. Zhu

L. Zhu

A is right
B is right
C is wrong. no DB
D is wrong. wrong syntax
E is right

So A.B.E. are correct