sasfvs

Untitled

Jul 5th, 2017
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.15 KB | None | 0 0
  1. SET SERVEROUTPUT ON;
  2. DECLARE
  3.     v_pi CONSTANT NUMBER(7,6);
  4. BEGIN
  5.     v_pi := 3.141592; -- this will generate an error
  6.     DBMS_OUTPUT.PUT_LINE(v_pi);
  7. END;
Advertisement