| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: ORA-28595 "Invalid DLL path" and external procedure
"Pinto" <ucanmailme_at_india.com> wrote in message news:<bcco96$6o9$1_at_news.mch.sbs.de>...
> the path in create library seems to be case sensitive.
> I had a similar problem in 9i win2k. after lot of struggle, when i changed
> the case of creat library it worked fine :-)
> Pinto.
>
You sure about this? I never heard that the directory is case sensitive on windows environment. UNIX yes, not windows. The following in done on WinXP. I have a small c library that gives me GMT.
SQL> select * from user_libraries;
LIBRARY_NAME
PL/SQL procedure successfully completed.
Library created.
SQL> set serveroutput on
SQL> declare
2 x date;
3 begin
4 universaltime(x);
5 dbms_output.put_line(to_char(x,'ddmmyy hh24:mi:ss'));
6 end;
7 /
130603 18:25:06
PL/SQL procedure successfully completed.
![]() |
![]() |