Tagged Questions
The execute-immediate tag has no wiki summary.
5
votes
3answers
161 views
Immediately self executing function and “this”
I want to create a javascript library, so I thought making it an immediately self executing function would be a nice thing to do to ensure scope safety and everything.
But now I'm running into a ...
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
111 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 ...
2
votes
1answer
539 views
Invalid table name error while using Execute Immediate statement with bind variables
I'm trying to get this dynamic SQL running ( using EXECUTE IMMEDIATE)
M_SQL_STATEMENT := 'SELECT MAX(:m_var1)+1 from :m_var2 RETURNING MAX(:m_var1)+1 INTO :m_var3';
EXECUTE IMMEDIATE M_SQL_STATEMENT
...
1
vote
2answers
187 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
841 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
280 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 ( ...