I recently ran a procedure trying to transfer file but got ora-29532 error in dev environment. Same procedure runs fine in prod db though. Java versions are the same in 2 dbs. Does any one know why dev throws out this error? --
SQL> set serveroutput on;
begin
dbms_java.set_output(50000);
bafilecopy('t','ALL');
bafilecopy('f','ALL');
end;SQL> 2 3 4 5
6 /
Copy all to H
Using default connection:
Last Copy: May 27, 2014 13:00
============================
Exception in thread "Root Thread" java.lang.VerifyError: (class:
jcifs/smb/SmbFile, method: setPathInformation signature: (IJJ)V) Incompatible
argument to function
at BAFileCopy.CopyAllCategoryToH(BAFILECOPY:324)
at BAFileCopy.main(BAFILECOPY:363)
begin
*
ERROR at line 1:
ORA-29532: Java call terminated by uncaught Java exception:
java.lang.VerifyError: (class: jcifs/smb/SmbFile, method: setPathInformation
signature: (IJJ)V) Incompatible argument to function
ORA-06512: at "PRODUCT_DB.BAFILECOPY", line 1
ORA-06512: at line 3
Thanks!!