qileilove

          blog已經轉移至github,大家請訪問 http://qaseven.github.io/

          oracle數據庫刪除觸發器實例

            請求表操作表:用戶信息表(person_tab)
            種類:Before delete
            功能描述:關聯刪除所有外鍵指向該表的數據行,刪除與人員關連的數據行
            操作表:
            日歷提示信息表(calendarNote_tab)
            公文基礎信息表(documentBaseInfo_tab)
            AB角工作分工信息表(divideWork_tab)
            公文督辦基礎信息表(superviseBaseInfo_tab)
            人員在崗信息表(guardInfo_tab)
            周工作計劃信息表(planOfWeek_tab)
          /***************************************************/
          create or replace
          TRIGGER DelPerson
          BEFORE DELETE ON person_tab
          FOR EACH ROW
          BEGIN
          delete from calendarNote_tab where calendarNote_tab.c_userId =:old.p_userId;
          delete from documentBaseInfo_tab where documentBaseInfo_tab.dbi_publishUserId =:old.p_userId;
          delete from superviseBaseInfo_tab where superviseBaseInfo_tab.sbi_enterUserId =:old.p_userId;
          delete from divideWork_tab where divideWork_tab.dw_enterUserId=:old.p_userId;
          delete from guardInfo_tab where guardInfo_tab.gi_userId=:old.p_userId;
          delete from planOfWeek_tab where planOfWeek_tab.pw_userId=:old.p_userId;
          END;
            請求表操作表:組織結構信息表(department_tab)
            種類: Before delete
            功能描述:關聯刪除所有外鍵指向該表的數據行,刪除與部門有關的數據行
            操作表:用戶信息表(person_tab)
          /***************************************************/
          create or replace
          TRIGGER Deldepartment
          BEFORE DELETE ON DEPARTMENT_TAB
          FOR EACH ROW
          BEGIN
          delete from person_tab where person_tab.p_departmentId =:old.dm_id;
          END;

          posted on 2013-10-31 10:58 順其自然EVO 閱讀(639) 評論(0)  編輯  收藏 所屬分類: 數據庫

          <2013年10月>
          293012345
          6789101112
          13141516171819
          20212223242526
          272829303112
          3456789

          導航

          統計

          常用鏈接

          留言簿(55)

          隨筆分類

          隨筆檔案

          文章分類

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 揭阳市| 循化| 旺苍县| 美姑县| 博罗县| 普定县| 安图县| 赤壁市| 且末县| 固镇县| 弥渡县| 靖远县| 平塘县| 融水| 庆城县| 高台县| 南投县| 确山县| 霍山县| 阜阳市| 河北省| 揭东县| 宿松县| 湘西| 昭通市| 九江县| 浑源县| 淮阳县| 和静县| 镇江市| 大渡口区| 安平县| 仙游县| 湛江市| 子长县| 明星| 鹤岗市| 霍山县| 诏安县| 仙游县| 涡阳县|