ORA-28595 "Invalid DLL path" and external procedure [message #2164] |
Tue, 25 June 2002 06:50  |
Alex
Messages: 190 Registered: August 1999
|
Senior Member |
|
|
i'm trying to call external procedures with Oracle 9i under Windows NT
i've got this "unknown" error : ORA-28595 "Invalid DLL Path"
this error comes during the call to the function declared as external... this is BEFORE the instruction "NAME ", so it must come from the listener (see below)
any help appreciated
# LISTENER.ORA Network Configuration File: D:oracleora92NETWORKADMINlistener.ora
# Generated by Oracle configuration tools.
LISTENER =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = poste2)(PORT = 1521))
(ADDRESS = (PROTOCOL = IPC)(KEY=EXTPROC0))
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = winresa.poste2)
(ORACLE_HOME = d:oracleora92)
(SID_NAME = winresa)
)
(SID_DESC =
(GLOBAL_DBNAME = BDTEST.POSTE2)
(ORACLE_HOME = D:oracleora92)
(SID_NAME = BDTEST)
)
(SID_DESC =
(PROGRAM = extproc)
(SID_NAME = plsextproc)
(ORACLE_HOME = d:oracleora92)
)
)
|
|
|
|
Re: ORA-28595 "Invalid DLL path" and external procedure [message #2864 is a reply to message #2168] |
Mon, 19 August 2002 00:43   |
colonel
Messages: 1 Registered: August 2002
|
Junior Member |
|
|
I resolved this issue :
if you're working under Windows, you have to add this line in the listener.ora file : ENVS="EXTPROC_DLLS=ANY"
here's a part of my file :
(SID_DESC =
(PROGRAM = extproc)
(SID_NAME = extproc2)
(ORACLE_HOME = d:oracleora92)
(ENVS="EXTPROC_DLLS=ANY")
)
hope this helps
you can contact me : ICQ #66752818
alex
|
|
|
|