top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Is there a limit on the size of a PL/SQL block?

+1 vote
564 views
Is there a limit on the size of a PL/SQL block?
posted Feb 3, 2015 by Suchithra

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

1 Answer

0 votes
 
Best answer

Currently, the maximum parsed/compiled size of a PL/SQL block is 64K and the maximum code size is 100K. You can run the following select statement to query the size of an existing package or procedure.

 SQL> select * from dba_object_size where name = 'procedure_name'
answer Feb 4, 2015 by Arun Gowda
...