Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SET SERVEROUTPUT ON;
- DECLARE
- v_pi CONSTANT NUMBER(7,6);
- BEGIN
- v_pi := 3.141592; -- this will generate an error
- DBMS_OUTPUT.PUT_LINE(v_pi);
- END;
Advertisement