errors SQL> show error Errors for PACKAGE BODY DTL.PKG_TA_ECONTRACTSDEAL: LINE/COL ERROR --- --- 3/1 PLS-00410: RECORD, TABLE 或参数列表中的字段不允许重复 3/1 PL/SQL: Item ignored 11/11 PLS-00323: 子程序或游标 'OPENECONTRACTS' 已在程序包说明中声明, 必须在程序包体中对其进行定义。
Errors for PACKAGE BODY EMP_BONUS: LINE/COL ERROR --- --- 2/13 PLS-00323: subprogram or cursor 'CALC_BONUS' is declared in a package specification and must be defined in the package body Correct problem: Copy CREATE OR REPLACE PACKAGE BODY emp_bonus AS PROCEDURE calc_bonus (date_hired...
Errors for PACKAGE BODY EMP_BONUS: LINE/COL ERROR --- --- 2/13 PLS-00323: subprogram or cursor 'CALC_BONUS' is declared in a package specification and must be defined in the package body 問題の修正: CREATE OR REPLACE PACKAGE BODY emp_bonus AS PROCEDURE calc_bonus (date_hired employees...
Errors for PACKAGE BODY EMP_BONUS: LINE/COL ERROR --- --- 2/13 PLS-00323: subprogram or cursor 'CALC_BONUS' is declared in a package specification and must be defined in the package body Correct problem: CREATE OR REPLACE PACKAGE BODY emp_bonus AS PROCEDURE calc_bonus (date_hired employ...
Errors for PACKAGE BODY EMP_BONUS: LINE/COL ERROR --- --- 2/13 PLS-00323: subprogram or cursor 'CALC_BONUS' is declared in a package specification and must be defined in the package body 問題の修正: コピー CREATE OR REPLACE PACKAGE BODY emp_bonus AS PROCEDURE calc_bonus (date_hired...