how do i see logs in the database
There's a stored procedure in the database named sp_sample (no int,name out varchar2);
when this is compiled it runs succesfuuly and get's the ouput .
Now a java guy compiles this stored procedure by using odbc he get's function sequence error and returns failed to execute the statement
I would like to see the database logs and see what's happening in the database when the stored procedure is called using java program .
How can i show that my stored procedure is working when the java program is being called.
help needed .