*Cause: The protocol adapter requested (by way of the "(PROTOCOL=..)"
// keyword-value pair in a TNS address) is unknown. If the supplied address
// is typographically correct then the protocol adaptor is not installed.
// *Action: Install the protocol adapter or correct typographically error,
// as appropriate.  Note: if the supplied address was derived from
// resolving the service name, check the address in the appropriate file
// (TNSNAMES.ORA, LISTENER.ORA or TNSNET.ORA).
 这是错误信息,你可以到这两个文件中看一看

解决方案 »

  1.   

    to楼上
    小子太笨,没明白你意思,请指点,用net8 easy配置时测试没问题??
      

  2.   

    修改你的TNSNAMES.ORA,例如这样
    test =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.7.23)(PORT = 1521))
        )
        (CONNECT_DATA = (SID = ORCL)(SERVER = DEDICATED))
      )
      

  3.   

    to :minkoming(学无止境)
       (SERVER = DEDICATED)此语句什么意思?谢了!!!!!
      

  4.   

    Purpose:  
     Instructs Net8 to use a dedicated server in an MTS environment. This parameter may be embedded under CONNECT_DATA.  
     
    Default:  
     DEDICATED  
     
    Values:  
     DEDICATED | SHARED  
     
    Example:  
     net_service_name= 
     (description =
        (address=...)
        (address=...)
      (connect_data=
        (server_name=sales.com)
        (server=dedicated))