DBA Data[Home] [Help]

XDB.XDB_RV_TRIG dependencies on XDB_RVTRIG_PKG

Line 5: xdb_rvtrig_pkg.rvtrig_ins(:new.res, :new.any_path);

1: trigger xdb.xdb_rv_trig INSTEAD OF insert or delete or update
2: on xdb.resource_view for each row
3: begin
4: if inserting then
5: xdb_rvtrig_pkg.rvtrig_ins(:new.res, :new.any_path);
6:
7:
8: end if;
9:

Line 11: xdb_rvtrig_pkg.rvtrig_del(:old.res, :old.any_path);

7:
8: end if;
9:
10: if deleting then
11: xdb_rvtrig_pkg.rvtrig_del(:old.res, :old.any_path);
12:
13:
14: end if;
15:

Line 17: xdb_rvtrig_pkg.rvtrig_upd(:old.res, :new.res,

13:
14: end if;
15:
16: if updating then
17: xdb_rvtrig_pkg.rvtrig_upd(:old.res, :new.res,
18: :old.any_path, :new.any_path );
19: end if;
20: end;