Connecting Tech Pros Worldwide Forums | Help | Site Map

Oracle to SQL Server using JDBC

swtwllm@alum.iup.edu
Guest
 
Posts: n/a
#1: Jun 27 '08
I need to be able to connect Oracle to SQL Server using JDBC and
loadjava.

I have written a java class that I can execute on the platform fine. I
need to be able to put this into a wrapper in Oracle.

My problem is in the SQLServer.jar(or any) driver. None seem to work
in oracle.

Any help PLEASE!!!!


swtwllm@alum.iup.edu
Guest
 
Posts: n/a
#2: Jun 27 '08

re: Oracle to SQL Server using JDBC


FOR ANYONE WITH THE SAME PROBLEM

After 2 days, I've finally been able to solve the problem. As I've
said in an earlier post, the error was happenening sometimes on load of
the driver. It said it couldn't resolve many of the classes within the
jar. This is the command I did to solve that

loadjava -user sys/password@system2 -resolve jtds-0.8.1.jar --I found
this from metalink user

I then had to run the following PL SQL Commands:

BEGIN
dbms_java.grant_permission('userName', 'SYS:java.net.SocketPermission',
'ServerName', 'resolve');
END;

BEGIN
dbms_java.grant_permission('WJWOLF', 'SYS:java.net.SocketPermission',
'000.000.000.000:1433', 'connect,resolve');
END;

It now works beautifully!!!

swtwllm@alum.iup.edu
Guest
 
Posts: n/a
#3: Jun 27 '08

re: Oracle to SQL Server using JDBC


FOR ANYONE WITH THE SAME PROBLEM

After 2 days, I've finally been able to solve the problem. As I've
said in an earlier post, the error was happenening sometimes on load of
the driver. It said it couldn't resolve many of the classes within the
jar. This is the command I did to solve that

loadjava -user sys/password@system2 -resolve jtds-0.8.1.jar --I found
this from metalink user

I then had to run the following PL SQL Commands:

BEGIN
dbms_java.grant_permission('userName', 'SYS:java.net.SocketPermission',
'ServerName', 'resolve');
END;

BEGIN
dbms_java.grant_permission('userName', 'SYS:java.net.SocketPermission',
'000.000.000.000:1433', 'connect,resolve');
END;

It now works beautifully!!!

Closed Thread