PL/SQL Developer中,我想查看dbms_output.put_line的输出结果:file->new->sql window
输入如下语句:   
    set ServerOuput on; 
    declare
       result integer;
    begin
       result:=10+3*4-20+5*2;
       dbms_output.put_line('运算结果是:'||to_char(result));
    end;运行时,提示:ora-00922:缺少或无效选项光标停在:ServerOuput 为什么?
怎样查看dbms_output.put_line的输出结果呢?网上搜了下,都说要set ServerOuput on,
还是不知如何查看,特求助于大家,谢谢指点下