Hi all,
I am trying to call a stroed procedure
db2 " call p_prcname(?,?)"
SQL0440N No authorized routine named "P_PRCNAME" of type "PROCEDURE"
having compatible arguments was found. SQLSTATE=42884
But it works when I call like this
db2 " call boss.p_prcname(?,?)"
where boss is the schema name.
Can someone tell me how to over come this issue? I want to call the stored procedure without any prefix.
THANK YOU ALL IN ADVANCE