Tagged Questions

3
votes
4answers
2k views

Oracle EXECUTE IMMEDIATE changes explain plan of query

I have a stored procedure that I am calling using EXECUTE IMMEDIATE. The issue that I am facing is that the explain plan is different when I call the procedure directly vs when I use EXECUTE ...
2
votes
1answer
114 views

use of using EXECUTE IMMEDIATE for an DML Statement in Stored Procedure

I am new to PL SQL Procedures , we have this line of code inside the Execution section of a Stored Procedure . I am having a query here , please tell me whats the use of using EXECUTE IMMEDIATE for a ...
1
vote
2answers
190 views

Why I can't use a bind variable in an execute immediate statement?

I'd like to use bind variables instead of a string concatenation when I build up a dynamic SQL statement for execute immediate. In the example below I can use bind variables for a, b and ret, but ...
1
vote
4answers
842 views

How do I debug Oracle dynamic sql in sqlplus?

I have a PL/SQL statement that uses EXECUTE IMMEDIATE to execute a query. However, I'm having difficulty figuring out how to even get the text of the query that's being executed. I can't use ...
0
votes
1answer
283 views

Ref cursor with Execute immediate

I want to get the results in ref_cursor, but I am not able to do that. Please suggest me how to get the results in ref_cursor using Execute immediate CREATE OR REPLACE PROCEDURE TEST_PROC_QT ( ...