Tagged Questions
2
votes
1answer
595 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
4answers
870 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 ...