I have a problem will calling plsql procedure from Java. Package with procedure is below: (schema job_runner and connection user/scheme is not same):
create or replace package test_package_for_sp as
type some_record_type is record
(
field_number number,
field_varchar2 varchar2 (128),
field_date date
);
type some_table_type is table of some_record_type;
procedure proc_table (p_card_bin in varchar2,
p_date in date default null,
p_out_table out some_table_type);
}
And then I try to call it from Java with callableStatement:
final String typeTableList = "SOME_TABLE_TYPE";
CallableStatement cs = null;
try (Connection con = dataSource.getConnection()) {
con.setSchema("JOB_RUNNER");
cs = con.prepareCall("{call job_runner.test_package_for_sp.proc_table(?, ?, ?)}");
cs.setString(1, "54867321");
cs.setDate(2, Date.valueOf(ZonedDateTime.now().minusDays(200).toLocalDate()));
cs.registerOutParameter(3, Types.ARRAY, typeTableList);
cs.execute();
} finally {
if (cs != null)
cs.close();
}
Error raise:
java.sql.SQLException: invalid name pattern: <connection_scheme>.SOME_TABLE_TYPE
at oracle.jdbc.oracore.OracleTypeADT.initMetadata11_2(OracleTypeADT.java:764)
at oracle.jdbc.oracore.OracleTypeADT.initMetadata(OracleTypeADT.java:479)
at oracle.jdbc.oracore.OracleTypeADT.init(OracleTypeADT.java:443)
If I change value in typeTableLis from value SOME_TABLE_TYPE to
full path with package and scheme JOB_RUNNER.TEST_PACKAGE_FOR_SP.SOME_TABLE_TYPE exception change to:
java.sql.SQLSyntaxErrorException: ORA-01948: identifier's name length (35) exceeds maximum (30)
ORA-06512: at "SYS.DBMS_PICKLER", line 18
ORA-06512: at "SYS.DBMS_PICKLER", line 58
ORA-06512: at line 1
at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:494)
Does anybody know how to call this procedure from java?