Property | Description |
Parameter type | Boolean |
Default value |
|
Modifiable |
|
Range of values |
|
Basic | No |
GLOBAL_NAMES
specifies whether a database link is required to have the same name as the database to which it connects.
If the value of GLOBAL_NAMES
is false
, then no check is performed. If you use or plan to use distributed processing, then Oracle recommends that you set this parameter to true
to ensure the use of consistent naming conventions for databases and links in a networked environment.
Note:
1. Related parameter: DB_DOMAIN
2. Query for the current value of the parameter
select name, value, isdefault, isses_modifiable, issys_modifiable,
isinstance_modifiable, isdeprecated, description
from v$parameter
where upper(name) = ‘GLOBAL_NAMES’;
NAME | VALUE | IS DEFAULT | ISSES_ MODIFIABLE | ISSYS_ MODIFIABLE | ISINSTANCE_ MODIFIABLE | IS DEPRECATED | DESCRIPTION |
global_names | FALSE | TRUE | TRUE | IMMEDIATE | TRUE | FALSE | enforce that database links have same name as remote database |
No comments:
Post a Comment