Advertisement
UltraTDK

Limit

Mar 20th, 2022
1,129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.21 KB | None | 0 0
  1. --LIMIT
  2. SET serveroutput ON;
  3. DECLARE
  4.     TYPE inBlock_vry IS VARRAY(10) OF NUMBER;
  5.     var_nt inBlock_vry := inBlock_vry();
  6. BEGIN
  7.     DBMS_OUTPUT.PUT_LINE('Numarul de elemente din varray: '||var_nt.LIMIT);
  8. END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement