VALIDATE STATIC CONNECT IDENTIFIER
The VALIDATE STATIC CONNECT IDENTIFIER command validates the static connect identifier of a database.
To perform this validation, the broker makes a new connection to the database using a static connect identifier based on the StaticConnectIdentifer property of the database. A new attribute, STATIC_SERVICE=TRUE is added to the connect identifier to ensure that a connection to the database is established using only a static service, not a dynamic service.
Format
VALIDATE STATIC CONNECT IDENTIFIER FOR { ALL | <db_unique_name> };
Command Parameters
Usage Notes
-
None
Command Examples
Example 1: Validation of Static Connect Identifier For a Database on Which Oracle Clusterware Is Configured
DGMGRL> VALIDATE STATIC CONNECT IDENTIFIER FOR North_Sales;
Oracle Clusterware on database "North_Sales" is available for database restart.Example 2: Validation of Static Connect Identifier For a Database on Which Oracle Clusterware Is Not Configured
DGMGRL> VALIDATE STATIC CONNECT IDENTIFIER FOR South_Sales;
Oracle Clusterware is not configured on database "South_Sales".
Connecting to database "South_Sales" using static connect identifier "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=<nodename>)((PORT=.*))))(CONNECT_DATA=(SERVICE_NAME=South_Sales_DGMGRL.example.com)(INSTANCE_NAME=tkdg2_sid)(SERVER=DEDICATED)(STATIC_SERVICE=TRUE)))" ...
Succeeded.
The static connect identifier allows for a connection to database "South_Sales".Example1: Validation of Static Connect Identifier For all Databases
DGMGRL> VALIDATE STATIC CONNECT IDENTIFIER FOR all;
Oracle Clusterware on database "North_Sales" is available for database restart.
Oracle Clusterware is not configured on database "South_Sales".
Connecting to database "South_Sales" using static connect identifier "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=<nodename>)((PORT=.*))))(CONNECT_DATA=(SERVICE_NAME=South_Sales_DGMGRL.example.com)(INSTANCE_NAME=tkdg2_sid)(SERVER=DEDICATED)(STATIC_SERVICE=TRUE)))" ...
Succeeded.
The static connect identifier allows for a connection to database "South_Sales".