+1 vote
in PL/SQL by
Is There A Limit On The Size Of A Pl/sql Block?

1 Answer

0 votes
by

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'

Related questions

0 votes
asked Mar 10, 2021 in PL/SQL by sharadyadav1986
+1 vote
asked Mar 7, 2021 in PL/SQL by SakshiSharma
...