好像是oracle8 调用外部的操作系统程序时会用到他。

解决方案 »

  1.   

    通过oracle的代理agent可以调用外部的应用程序,包括java、c或sql,也可以是其他的,只要有相应的外部程序支持器
      

  2.   

    ipc
    协议使用的,使用tcp/ip就足够了,用不上那个,你把它删除也没有关系。
      

  3.   

    # LISTENER.ORA Network Configuration File: E:\oracle\ora81\network\admin\listener.ora
    # Generated by Oracle configuration tools.LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS_LIST =
            (ADDRESS = (PROTOCOL = TCP)(HOST = server-2000)(PORT = 1521))
          )
          (ADDRESS_LIST =
            (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
          )
        )
      )SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = E:\oracle\ora81)
          (PROGRAM = extproc)
        )
        (SID_DESC =
          (GLOBAL_DBNAME = ora8i)
          (ORACLE_HOME = E:\oracle\ora81)
          (SID_NAME = ora8i)
        )
      )
    Notice that the listener has been set to listen for three different types of connections:  External processes called from the server, using InterProcess Communication (IPC)  
     Oracle Net connections from across the network, using TCP/IP, on port 1521  The listener has also been configured with two services:  An external process server for external procedure calls  
     A database service for the ORCL.WORLD instance  extproc是一个扩展的程序调用接口协议。
      

  4.   

    很有用处,我现在就在用,不过还没搞定,有谁做好了,告我一声,另我用的是哦ORACLE FOR OPENVMS
      

  5.   

    oracle8 连接和调用外部的操作系统程序或进程用的。
    具体我也没用过.