zoukankan      html  css  js  c++  java
  • Notes on Arc SDE 安装

    1.When you post install an Arc SDE with an Oracle DataBase, you should not leave anything that may watch the regiditer and the service on, then there will be no such many problems.

    2.You need to edit the configure files under the "X:\app\XXX\product\11.2.0\dbhome_1\NETWORK\ADMIN" path:

      1) edit the listener.ora file:

    # listener.ora Network Configuration File: D:\app\zhangjb\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = D:\app\zhangjb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:D:\app\zhangjb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
        )
      )
    
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        )
      )
    
    ADR_BASE_LISTENER = D:\app\zhangjb
    

      to this:

    # listener.ora Network Configuration File: D:\app\zhangjb\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = D:\app\zhangjb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:D:\app\zhangjb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
        )
       (SID_DESC =
        (GLOBAL_DBNAME = ORCL)
        (ORACLE_HOME = E:\Oracle10g)
        (SID_NAME = ORCL)
        )
      )
    
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        )
      )
    
    ADR_BASE_LISTENER = D:\app\zhangjb
    

      2) Edit the sqlnet.ora to this:

    # sqlnet.ora Network Configuration File: D:\app\zhangjb\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    
    # This file is actually generated by netca. But if customers choose to 
    # install "Software Only", this file wont exist and without the native 
    # authentication, they will not be able to connect to the database on NT.
    
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    

      3) The server name on the configfile with which you use to log on the database is your the SID of you DATABASE, not the name of your machine.

      

  • 相关阅读:
    BZOJ3578:GTY的人类基因组计划2(集合hash,STL)
    【BZOJ 1022】 [SHOI2008]小约翰的游戏John
    【BZOJ 1295】 [SCOI2009]最长距离
    【BZOJ 1103】 [POI2007]大都市meg
    【BZOJ 3172】 [Tjoi2013]单词
    【BZOJ 1067】 [SCOI2007]降雨量
    【BZOJ 1491】 [NOI2007]社交网络
    【BZOJ 1087】[SCOI2005]互不侵犯King
    【BZOJ 1009】 [HNOI2008]GT考试
    【BZOJ 1053】[HAOI2007]反素数ant
  • 原文地址:https://www.cnblogs.com/henyihanwobushi/p/2883754.html
Copyright © 2011-2022 走看看