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 dbms_output as the query is greater than 255 characters. Is there any way to make sqlplus echo the string that's passed in to EXECUTE IMMEDIATE?
|
|
|
||
|
|
|
|
What version of Oracle are you using? 255 is the default line length for Alternatively you should consider using an IDE which supports DBMS_DEBUG. For instance, SQL Developer does so, and it is free from Oracle. Find out more. |
||||
|
|
|
You can try to attach a profiler to the database (honestly I have only done that for SqlServer) and run the procedure since the profiler will show any query made to the DB you will be able to pick it up there and do the necessary debugging. Hope it helps.. |
||
|
|
|
|
How to print large strings N characters at a time. Modify to suit your needs.
|
||
|
|
|
|
You could insert the string into a logging/temporary table and examine it. |
||
|
|
