declare 
  seq_no number;
begin
   exec get_qwt_seq_no('200403',seq_no);
   dbms_output.put_line(seq_no);
end

解决方案 »

  1.   

    to: nicholaz(九思·逢尤) 
    出现以下报错:
         exec get_qwt_seq_no('200403',seq_no);
            *
    ERROR 位于第 4 行:
    ORA-06550: 第 4 行, 第 9 列:
    PLS-00103: 出现符号 "GET_QWT_SEQ_NO"在需要下列之一时:
    := . ( @ % ;
    符号 ":=" 被替换为 "GET_QWT_SEQ_NO" 后继续。
      

  2.   

    PLS-00103 found 'string' but expected one of the following: 'string'"},Cause: This error message is from the parser. It found a token (language element) that is inappropriate in this context.Action: Check previous tokens as well as the one given in the error message. The line and column numbers given in the error message refer to the end of the faulty language construct.