1.

Is There A Limit On The Size Of A Pl/sql Block?

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'

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.



Discussion

No Comment Found