+1 vote
in PL/SQL by
Is There A Pl/sql Engine In Sql*plus?

1 Answer

0 votes
by

No. Unlike Oracle Forms, SQL*Plus does not have a PL/SQL engine. Thus, all your PL/SQL are send directly to the database engine for execution. This makes it much more efficient as SQL statements are not stripped off and send to the database individually.

...