Ser server output off : Server Output « PL SQL « Oracle PL / SQL
- Oracle PL / SQL
- PL SQL
- Server Output
Ser server output off
-- Example of a WHILE loop that never executes.
set serveroutput off;
DECLARE
c NUMBER := 0;
BEGIN
DBMS_OUTPUT.PUT_LINE('The value of variable_Calc is ' || c);
END;
/
Related examples in the same category