What is the limit on the size of a PL/SQL block?
-
32K
-
64K
-
100K
-
None of the Above
B
Correct answer
Explanation
PL/SQL blocks have a size limit of 64K. This is a database-specific constraint on the maximum size of code that can be contained in a single PL/SQL block. The limit applies to the compiled code size, not the source text length. This constraint is important for developers writing complex stored procedures or large anonymous blocks.