Reputation: 1129
In SQL Server Management Studio, there is a "Parse" menu where you can check the syntax of the stored procedure, without running the stored procedure. Is there a similar thing in Oracle SQL Developer, to check the syntax of the codes in the stored procedure without executing it ? Similar to compiling it, and see if there is any error ?
Thank you.
Upvotes: 1
Views: 3847
Reputation: 22457
Yes...but it does that as you type, it's not an on-demand thing.
There is no...hey compiler have a look at this, but don't actually compile it feature. Our parser is client side and is following the rules of the Oracle SQL and PL/SQL syntax and applies that to the code it sees.
Upvotes: 3