Tagged Questions
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
540 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
189 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
281 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 ( ...