SERVICE_NAME和SERVICE_NAMES和GLOBAL_DBNAME的各自己定义

tnsnames.ora文件中边SERVICE_NAME的參数值--对于动态注冊和静态注冊。该參数有不同的取值

对于动态注冊:

The following pfile/spfile parameters are important when setting the value

for SERVICE_NAME in the tnsnames.ora file:

DB_NAME

DB_DOMAIN

SERVICE_NAMES

一句话概括:

Use the values of the parameters existing in the pfile or spfile,

namely DB_NAME and DB_DOMAIN to determine the value of the SERVICE_NAME that should be used in the TNSNAMES.ORA.

即是:SERVICE_NAME=DB_NAME.DB_DOMAIN

#######################################################################################################################

对于静态注冊:

If using statically defined SIDs in the listener.ora file under SID_DESC, the

GLOBAL_DBNAME parameter (within SID_DESC) must match the value set in the

tnsnames.ora file for SERVICE_NAME.

即是:SERVICE_NAME=GLOBAL_DBNAME parameter(listener.ora文件里)

附1:listener.ora文件里GLOBAL_DBNAME的含义:

--来自:Global Database Name Explained (Doc ID 115499.1)

In the LISTENER.ORA file, under the sections SID description, a parameter

GLOBAL_DBNAME can be found. This parameter identifies the database by its

global database name and consists of the name and domain name of the database,

as given in SERVICE_NAMES parameter in the database initialization parameter

file (init<SID>.ora).

即是:GLOBAL_DBNAME=consists of the name and domain name of the database

The value of this parameter is used by the Oracle Intelligent Agent to

determine the service name of the database. Detailed information about this

LISTENER.ORA parameter can be found in Note:97066.1 "How the Intelligent

Agent determines a database service name".

附2:

数据库初始化參数service_names的含义:

默认情况下,service_names为DB_NAME.DB_DOMAIN

时间: 2024-10-11 14:22:02

SERVICE_NAME和SERVICE_NAMES和GLOBAL_DBNAME的各自己定义的相关文章

SERVICE_NAME和SERVICE_NAMES和GLOBAL_DBNAME的各自定义

tnsnames.ora文件里边SERVICE_NAME的参数值--对于动态注册和静态注册,该参数有不同的取值 对于动态注册: The following pfile/spfile parameters are important when setting the value for SERVICE_NAME in the tnsnames.ora file: DB_NAME DB_DOMAIN SERVICE_NAMES 一句话概括: Use the values of the paramet

配置ORACLE 客户端连接到数据库

--================================= -- 配置ORACLE 客户端连接到数据库 --================================= Oracle 客户端连接到Oracle 数据库服务器貌似不同于SQL serve中的网络配置,其实不然,只不过所有的SQL server 运行于Windows平台,故很多配置直接集成到了操作系统之中.所以无需配置客户端即可连接到服务器.Oracle 客户端连接到数据库依赖于Oracle Net.Oracle提供

oracle 配置监听

LISTENER =  (DESCRIPTION_LIST =    (DESCRIPTION =      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))      (ADDRESS = (PROTOCOL = TCP)(HOST = raccontroller.cc)(PORT = 1521))    )  ) SID_LIST_LISTENER =  (SID_LIST =    (SID_DESC =      (GLOBAL_DBNAME

1. 配置ORACLE 客户端连接到数据库

转载自:http://blog.csdn.net/leshami/article/details/5917103 Oracle 客户端连接到Oracle 数据库服务器貌似不同于SQL serve中的网络配置,其实不然,只不过所有的SQL server 运行于Windows平台,故很多配置直接集成到了操作系统之中.所以无需配置客户端即可连接到服务器.Oracle 客户端连接到数据库依赖于Oracle Net.Oracle提供了很多基于客户端或服务器的配置工具,需要搞清的是Oracle Net 中的

安装oracle客户端连接工具

第1章 安装oracle客户端工具 1.1 从oracle官网下载两个rpm包放置任意路径下,使用rpm安装: rpm -ivh oracle-instantclient11.2-basic-11.2.0.3.0-1.x86_64.rpm rpm -ivh oracle-instantclient11.2-sqlplus-11.2.0.3.0-1.x86_64.rpm #默认安装在/usr/lib/oracle/这个路径下. (注:下载前需要注册账号,免费的,可以放心注册) 1.2 配置环境变量

Linux静默安装Oracle

打算在云服务器上装oracle服务,以前DBA美眉都是在图形化界面下安装,这次抓瞎了.赶紧上网查查,静默安装可以解决问题.于是乎赶紧开始部署,过程如下.安装环境:操作系统:CentOS 7内存:11G(11851M)硬盘:128Goracle版本 11g 1.准备oracle 安装包 linux.x64_11gR2_database_1of2.zip 和 linux.x64_11gR2_database_2of2.zip 2.检查本机依赖包,没找到的用 yum install ****** 命令

oracle 创建dblink

CREATE database link test_dblinkCONNECT TO sjzx IDENTIFIED BY sjzxUSING '(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.176.150.201)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = orcl) ))'; database link概述 database link是定义一个数据

ORACLE中的db_name,service_names,instance_name,oracle_sid,global_dbname

Oracle中有很多与名字相关的参数,有时会让人觉得迷惑,这个参数都有什么作用,它们之间的区别又是什么呢? 下面我们先来看一看都有哪些参数与名字相关 参数文件中有db_name,instance_name,service_names,db_unique_name 环境变量中有oracle_sid 在listener.ora中有sid_name,global_dbname(静态注册的情况下) 在tnsnames.ora中有service_name,sid 它们各有什么含义呢,我们来一一介绍: db

Oracle里SID、SERVICE_NAME

本文仅用作备忘,无实际指导意义,逻辑略混乱. 1.命令show parameter name; SQL> show parameter name; NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ db_file_name_convert string db_name string orcl db_unique_name string orcl globa