When calling a stored procedure through JMeter in an Oracle database, I get the following error:ORA-20999: Oracle ERROR:: ORA-29478: Implicit result cannot be returned through this statement
I don't have 10 reputation so I cannot post images. I'll describe the configuration.
This is my JDBC Connection information:
Max Number of Connections:0
Max Wait (ms):10000
Time Between Eviction Runs (ms): 60000
Auto Commit: True
Transaction Isolation:TRANSACTION_READ_COMMITTED
Test While Idle: True
Soft Min Evictable Idle Time (ms): 5000
Validation Query: select 1 from dual
JDBC Driver Class: oracle.jdbc.OracleDriver
This is my JDBC Request Sampler information:
Query Type: Callable Statement
Procedure: call office_hierarchy()
This is the error that I get:
ORA-20999: Oracle ERROR:: ORA-29478: Implicit result cannot be returned through this statement
ORA-06512: at 'XXXX.UTILS", line 2019
ORA-06512: at "XXXX.OFFICE_HIERARCHY", line 39
I purposely replaced my user with XXXX.
I'm setting up a JMeter test script, in which I call stored procedures in our Oracle database. The Oracle database is on version 12C. I use the latest version ojdbc8.jar from the Oracle website. I have also tried ojdbc6.jar and ojdbc7.jar, also from the Oracle website. My Jmeter is on 5.0 r1840935. My java version is 1.8.0_191.
I have confirmed that the database connection can be made, for a select query can be made without problems.
Implicit results (or implicit cursors) have been introduced in Oracle 12c. Has anyone run into this issue so far? Should I change something in the way that I call the stored procedure? Or is this still perhaps a driver issue? Or could it be that JMeter doesn't support this feature yet?
Callable Statement
– user7294900Transaction Isolation
toDEFAULT
– user7294900