Oracle9i program with pl/sql - 1Z0-147 模擬練習

Which three statements are true regarding database triggers? (Choose three)

正解: A,C,E
解説: (PassTest メンバーにのみ表示されます)
Why do you use an INSTEAD OF trigger?

正解: C
解説: (PassTest メンバーにのみ表示されます)
Which two statements about the overloading feature of packages are true? (Choose two)

正解: D,E
解説: (PassTest メンバーにのみ表示されます)
Examine this code:
CREATE OR REPLACE FUNCTION calc_sal(p_salary NUMBER)
RETURN NUMBER
IS
v_raise NUMBER(4,2) DEFAULT 1.08;
BEGIN
RETURN v_raise * p_salary;
END calc_sal;
/
Which statement accurately call the stored function CALC_SAL? (Choose two)

正解: A,C
解説: (PassTest メンバーにのみ表示されます)
Which three are true regarding error propagation? (Choose three)

正解: A,C,D
解説: (PassTest メンバーにのみ表示されます)
You need to disable all triggers on the EMPLOYEES table.Which command accomplishes this?

正解: B
解説: (PassTest メンバーにのみ表示されます)
Examine this procedure:
CREATE OR REPLACE PROCEDURE UPD_BAT_STAT (V_ID IN NUMBER DEFAULT 10, V_AB IN NUMBER DEFAULT 4) IS BEGIN UPDATE PLAYER_BAT_STAT SET AT_BATS = AT_BATS + V_AB WHERE PLAYER_ID = V_ID; COMMIT; END;
Which two statements will successfully invoke this procedure in SQL *Plus? (Choose two)

正解: A,E
解説: (PassTest メンバーにのみ表示されます)