pls-00103

    0熱度

    2回答

    我得到下面的錯誤而執行代碼 create or replace function contact_restriction_function(obj_schema varchar2, obj_name varchar2) return varchar2 is v_contact_info_visible hr_user_access.contact_info_visible%type;

    1熱度

    3回答

    我正在編寫一個簡單的老年人檢查程序。但這個錯誤讓我感到困惑。作爲代碼如下 declare gen char(1); age number(3); begin gen:='&gen'; age:=&age; if age>65 and gen='m' then dbms_output.put_line("senior ci

    0熱度

    1回答

    編譯我的函數時出現此錯誤。 PLS-00103:在期待以下某項時遇到符號「*」: :=。 (@%; 下面是代碼: CREATE OR REPLACE FUNCTION IncreaseSalary (para_empid IN employee.employeeid%TYPE, para_increase IN NUMBER) RETURN NUMBER IS v_SalaryOut

    0熱度

    1回答

    我不知道該怎麼做。我寫了一個函數,沒有出現任何錯誤,但後來當我運行的代碼我: ORA-0650: line 3, column 14: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . (@ % ; not null range default character ORA-06

    0熱度

    1回答

    最近,我已經開始準備定期報告過程的數據市場,並嘗試使用帶參數的過程。 所以我讀了this guideline並試圖複製,但在編譯時遇到了錯誤。 這裏是我的代碼: create or replace procedure mig_rate @rep_date date AS create or replace table mig_temp1( report_date date,

    0熱度

    1回答

    我試圖創建一個存儲過程,該存儲過程調用另一次。這是通過使用每個循環來完成的。所有的開發都在oracle sql developer版本3.0.04。 CREATE OR REPLACE PROCEDURE Z_INBILLABILITYSERV IS BEGIN DECLARE ano VARCHAR2(4); BEGIN select E

    1熱度

    1回答

    找不到任何錯誤,但它編譯有錯誤。任何人都看到我對視力的看法? CREATE OR REPLACE FUNCTION myusername.fun_hr_format_phone (tmp in VARCHAR2) RETURN VARCHAR2 IS tmpVar VARCHAR2(12); BEGIN SELECT DECODE( LENGTH(tmp), 1

    0熱度

    1回答

    我收到以下錯誤時: The create package operation was not successful for the following reason: ERROR at line 41: PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: end not pragm

    1熱度

    1回答

    即時得到我下面的函數內的幾個錯誤: CREATE OR REPLACE FUNCTION department_salary (emp_dept VARCHAR2, salary NUMBER) RETURN NUMBER AS dept_sal NUMBER := salary; BEGIN IF emp_dept = 'MIS' THEN

    0熱度

    2回答

    錯誤在命令開始位於第1行: DECLARE x NUMBER := 0; counter NUMBER := 0; BEGIN FOR i IN 1..4 LOOP x := x + 1000; counter := counter + 1; INSERT INTO temp VALUES (x, counter, 'in OUT