Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
759 views

where does system.out.println output goes in oracle java class

I have loaded a java class into oracle using loadjava utility This class has some system.out.println messages. When I execute a method from this class I want to see the the sysout messages. Can ...
2
votes
1answer
62 views

Oracle: named java procedures, scoped by schema name?

If I do this: loadjava -u user1 MyClass.class loadjava -u user2 MyClass.class are the two class definitions distinct? i.e., I can install a new version into user2 without affecting the code ...
0
votes
1answer
420 views

Couldn't run loadjava on user schema to load dbwsclientws.jar dbwsclientdb102.jar

I am trying to load oracle webservice client jars to my schema. I did set the PATH to inlcude: /u01/app/oracle/product/10.2.0/db_1/bin When I try to run loadjava as "loadjava -u myschema/myscehmapwd ...
0
votes
3answers
2k views

Moving data between oracle and sql server using Linked server

I have set up Oracle Linked server on Sql Server 2005 box using Oracle provider oledb and its working fine from sql server 2005 to oracle 9i, i.e. When i run distributed query from sql server i get ...
0
votes
7answers
2k views

Confusion over class resolution in Oracle java stored procedures

I'm trying to use a third-party java library within oracle. The library seems compatible with the same 1.4 version of the jvm that our Oracle 10g server hosts, since it runs fine outside of Oracle, ...