org.springframework.jdbc.BadSqlGrammarException: CallableStatementCallback; bad SQL grammar
[{call pkg_name.procedure_name()}]; nested exception is java.sql.SQLException: ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'PROCEDURE_NAME'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
I have two schemas- OwnerSchema and AppSchema. I have grant execute privileges on all the packages from OwnerSchema to AppSchema. When I try to execute any procedure from the back end of AppSchema, I am able to execute the procedure. When I try to execute the same procedure from Java Spring JDBC, I get above error. I am able to execute this procedure from OwnerSchema from Java.
I am able to access all the tables from Java Spring JDBC application with AppSchema.
I have used following trigger to point to the OwnerSchmea on LogOn.
CREATE OR REPLACE TRIGGER FINAL_APP_USER.AFTER_LOGON_TRG
AFTER LOGON ON FINAL_APP_USER.SCHEMA
BEGIN
DBMS_APPLICATION_INFO.SET_MODULE(USER, 'Initialized');
EXECUTE IMMEDIATE 'ALTER SESSION SET current_schema=TEST'; --enter owner
END;
/
Here is the call to procedure
SimpleJdbcCall simpleJdbcCall = getSimpleJdbcCall()
.withCatalogName("pkg_name").withProcedureName(
"procedure_name").returningResultSet(
"C_Srf_1", new RowMapper<FinalCountForQuestions>() {
public FinalCountForQuestions mapRow(
ResultSet rs, int rowNum)
throws SQLException {
...
return finalCountForQuestions;
}
});
Map<String, Object> mapOfOutputParams = simpleJdbcCall.execute();
Spring JDBC template generates following query while making call to database procedure
So when you are using an ApplicationUser to call the database procedure, it will look into ALL_ARGUMENTS view with you ApplicationUser name and will not find any arguments. So, solution for this is, when you make a call to a procedure, pass the schema name of owner as follows.