top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Is there a PL/SQL Engine in SQL*Plus?

+1 vote
398 views
Is there a PL/SQL Engine in SQL*Plus?
posted Feb 3, 2015 by Suchithra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

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.

answer Feb 4, 2015 by Arun Gowda
...