zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    USACO--2.1The Castle
    浅谈python字符串存储形式
    面向对象——一起来复习托付与事件!
    数据结构——算法之(032)(求两个串中的第一个最长子串)
    读《浪潮之巅》有感
    关于android 怎样安装 assets文件下的apk
    每日一小练——求质数
    怎样使破解网页的禁止复制黏贴
    Angularjs Nodejs Grunt 一个样例
    《TCP/IP具体解释卷2:实现》笔记--域和协议
  • 原文地址:https://www.cnblogs.com/clnchanpin/p/7097113.html
Copyright © 2011-2022 走看看