Multiple choice technology databases

Which command is used to write information to an output buffer?

  1. SET OUTPUT ON

  2. SET BUFFEROUTPUT ON

  3. SET SERVEROUTPUT ON

  4. SET SCREEN ON

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In Oracle PL/SQL and SQL*Plus, the SET SERVEROUTPUT ON command enables the output buffer, allowing procedures to write information via DBMS_OUTPUT.PUT_LINE that can be displayed on the screen. The other options are incorrect or non-existent commands.