What can be a size of a pl/sql block? Is there any limit?
Answers were Sorted based on User's Feedback
Answer / akshata kamat
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'
Is This Answer Correct ? | 2 Yes | 1 No |
What is numeric function sql?
Does sql between include endpoints?
what is the difference between to_char and to_date functions?
Can we use rowid as primary key?
Is there any restriction on the use of union in embedded sql?
How can we Get the Updated Rows? ie, There is 100s of Rows i updated the Rows who have salary 5000. then i want to select the Updated Rows. How can we achieve it?
What does select count (*) mean in sql?
Difference between truncate, delete and drop commands?
Write a query to display the current date in sql?
what is foreign key? : Sql dba
Explain two virtual tables available at the time of database trigger execution.
Why do we need view in sql?