<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Decode360's Blog

    業精于勤而荒于嬉 QQ:150355677 MSN:decode360@hotmail.com

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 ::  :: 管理 ::
      397 隨筆 :: 33 文章 :: 29 評論 :: 0 Trackbacks
    Update的另一種寫法
    ?
    ??? 最近學到update的另一種寫法,是以前自己從來沒有使用過的,看了一下文檔,也沒有找到很詳細的說明。這種update方式其基礎是建立在Query中的,所以可以確保使用CBO而非RBO,可以在大表的更新時明顯得提高效率。在這里記錄一下基本的方法:
    ?
    SQL> create table a ( id int, a1 varchar2(25) );
    SQL> create table b ( id int, b1 varchar2(25) );
    SQL> insert into a values ( 1, 'Hello' );
    SQL> insert into a values ( 2, 'xxxxx' );
    SQL> insert into b values ( 2, 'World' );
    SQL> commit;
    ?
    ?
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set a1 = b1;
    set a1 = b1
    ??? *
    ERROR at line 2:
    ORA-01779: cannot modify a column which maps to a non key-preserved table
    ?
    --無法Update,必須要有一個主鍵
    ?
    SQL> alter table b add constraint b_key primary key(id);
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set a1 = b1;

    1 row updated.
    ?
    --可以Update
    ?
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set b1 = a1;
    set b1 = a1
    ??? *
    ERROR at line 2:
    ORA-01779: cannot modify a column which maps to a non key-preserved table
    ?
    --交換位置后依舊無法更新
    ?
    SQL> alter table b drop constraint b_key;
    SQL> alter table a add constraint a_key primary key(id);
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set b1 = a1;

    1 row updated.
    ?
    --為表a設置主鍵后可以更新
    ?
    SQL> alter table a drop constraint a_key;
    SQL> alter table a add constraint a_key primary key(id,a1);
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set b1 = a1;
    set b1 = a1
    ??? *
    ERROR at line 2:
    ORA-01779: cannot modify a column which maps to a non key-preserved table
    ?
    --使用聯合主鍵也是不可以的,必須是關聯字段
    ?
    ?
    ??? 由上可知,使用這種方式來更新表,需要用于更新的表(最終數據表)的關聯字段必須設置為主鍵,且不可多字段主鍵。另外還有一個網友也指出了另外一個問題:
    If the user has update permission on table A, but only has select permission on table B, they cannot update via the first example.? Oracle will return ORA-01031 (insufficient privileges).
    ?
    ??? 測試一下:
    ?
    SQL> create user x identified by x;
    SQL> grant create session on x;
    SQL> grant select,update on a to x;
    SQL> grant select on b to x;
    SQL> create public synonym a for wangxiaoqi.a;
    SQL> create public synonym b for wangxiaoqi.b;
    ?
    SQL> conn x/x
    Connected.
    SQL> update ( select a1, b1 from a, b where a.id = b.id )
    ? 2? set a1 = b1;
    update ( select a1, b1 from a, b where a.id = b.id )
    ?????????????????????????????? *
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ?
    --系統報錯權限不夠
    ?
    SQL> update a set a1 = (select b1 from b where b.id=a.id);
    ?
    2 rows updated.
    ?
    --使用Update...Select...語句是可以更新成功的
    ?
    ?
    ?
    ?
    posted on 2009-04-06 21:51 decode360 閱讀(375) 評論(0)  編輯  收藏 所屬分類: 05.SQL
    主站蜘蛛池模板: 国产午夜亚洲精品不卡| 亚洲一卡2卡3卡4卡5卡6卡| aa午夜免费剧场| 亚洲国产精品一区二区第一页免 | 日韩免费视频一区| 亚洲欧美日本韩国| 日韩免费视频网站| 色噜噜狠狠色综合免费视频| 国产大片免费观看中文字幕| 国产午夜亚洲精品不卡免下载| 亚洲成a人片在线播放| 色婷婷综合缴情综免费观看| 亚洲中文字幕在线观看| 曰批全过程免费视频在线观看无码| 久久久久久久综合日本亚洲| 日本高清高色视频免费| 亚洲综合精品一二三区在线| AA免费观看的1000部电影| 亚洲中文字幕无码av永久| 亚洲高清无码在线观看| a级毛片免费全部播放| 亚洲酒色1314狠狠做| 免费无码精品黄AV电影| 久久综合亚洲色hezyo| 亚洲午夜成人精品电影在线观看| a级午夜毛片免费一区二区| 亚洲视频精品在线观看| 女人被男人桶得好爽免费视频| 黄页免费视频播放在线播放| 亚洲成AV人片在| 天堂在线免费观看中文版| 人碰人碰人成人免费视频| 久久91亚洲精品中文字幕| 午夜时刻免费入口| a毛片成人免费全部播放| 亚洲视频在线观看不卡| 全免费A级毛片免费看网站| 国产综合免费精品久久久| 亚洲乱码一二三四区乱码| 亚洲综合色视频在线观看| 国产成人精品免费视|