merge into ORA-30926

简介: ORA-30926: 无法在源表中获得一组稳定的行 同时要求在一张表中添加一个字段,由于数据量较大,想使用merge into update的方式将数据 meger into xxx1 t1 using(select * from xxx2 )t2  on(t1.
ORA-30926: 无法在源表中获得一组稳定的行

同时要求在一张表中添加一个字段,由于数据量较大,想使用merge into update的方式将数据

meger into xxx1 t1
using(select * from xxx2 )t2 
on(t1.xm=t2.xm and t1.dz=t2.dz)
when matched then
update 
set train_time=d_time;
commit;

执行了两个小时后
报错:ORA-30926: 无法在源表中获得一组稳定的行

后来网上查找资料meger into on 字段应给是唯一值


首先我们要知道merge into存在的意义是什么!!!
      使用 merge into   是为了根据匹配条件on(condition)利用table_source 的数据更新合并table_target的数据。
merge into 的内部处理是将 table_source  的每一条记录和table_target的每一条记录对比匹配,匹配到符合条件的  记录就会进行修改,匹配不到的话就会insert。如果table_source的匹配列中有重复值的话,等到第二次重复的列值匹配的时候,就会将第一次的update后的值再一次update,就是说合并后的table_target中会丢失在table_source中的记录!!!如果记录丢失的话,两表合并的意义何在?!!因此我们使用merge into要注意:源表匹配列中不能有重复值,否则无法匹配(报错!     )。




   查询一下ORA-30926错误的具体说明:

Oracle Error : ORA-30926

unable to get a stable set of rows in the source tables

Cause

A stable set of rows could not be got because of large dml activity or a non-deterministic where clause.

Action

Remove any non-deterministic where clauses and reissue the dml.

 

If there is either a many-to-one or many-to-many relationship between the source and target tables. This is not as serious as it sounds because you would normally have to MERGE a one-to-one or one-to-zero relationship as your join condition would be protected by the target's primary key.

When performing a merge statement, the table to be merged had multiplerecords with the same key used for matching. While this is ok forrecords to be inserted into the target table, Oracle doesn't like thison the update portion of the statement. The solution is to remove the duplicate or pick a matching key that is truely unique.

 

There is a restriction that multiple updates to the same row in the destination table is not allowed. ORA-30926 error will be returned if this is attempted.

 

    通过上面的信息可以得知,对目标表中的相同行数据进行多次更新是不允许的,这样会导致ORA-30926错误。

 

    追溯代码,确保MERGE INTOUSING表对于ON中的关联条件是唯一的,注意到DW.FACT_DEAL_AUCTION_D的数据是细化到AUCTION_ID的,会存在多条相同的CUSTIDCATID维度数据。通过使用group by修改代码即可解决。


目录
相关文章
|
8月前
|
容器
How to set the Undo_tablespace in PDB in Physical Standby RAC Database. (Doc ID 2726173.1)
How to set the Undo_tablespace in PDB in Physical Standby RAC Database. (Doc ID 2726173.1)
66 1
|
Oracle 关系型数据库 SQL
【MOS】EVENT: DROP_SEGMENTS - cleanup of TEMPORARY segments (文档 ID 47400.1)
【MOS】EVENT: DROP_SEGMENTS - Forcing cleanup of TEMPORARY segments (文档 ID 47400.1) ***Checked for relevance on 14-Jun-2012*** ...
1204 0
|
Oracle 关系型数据库 SQL
|
SQL Oracle 关系型数据库
Oracle中merge into的使用 (转)
该命令使用一条语句从一个或者多个数据源中完成对表的更新和插入数据. ORACLE 9i 中,使用此命令必须同时指定UPDATE 和INSERT 关键词,ORACLE 10g 做了如下改动。 1、insert 和update是可选的 2、UPDATE 和INSERT 后面可以跟WHERE 子句 3、在ON条件中可以使用常量来insert 所有的行到目标表中,不需要连接到源表和目标表 4、UPDATE 子句后面可以跟delete 来去除一些不需要的行。
1028 0
|
存储 Oracle 关系型数据库
oracle参数之DEFERRED_SEGMENT_CREATION
         众所周知,在清空表内所有数据时,truncate比delete要快很多,原因是,delete语句每次删除一行,都在事务日志中为所删除的每行记录一项。
875 0
|
SQL Perl
ORA-01002 “fetch out of sequence”关于cursor的一个bug
    今天发现一个PLSQL脚本报ORA-01002和ORA-06512: ERROR at line 1:ORA-01002: fetch out of sequenceORA-06512: at line 8     原来,脚本里包含两个表的两个cursor,然后分别对每个表打开cursor然后对此表做一些dml,每隔若干行rollback(这是因为此PLSQL脚本还在测试阶段,所以需要rollback)。
3764 0
|
Oracle 关系型数据库 测试技术
0715理解_offline_rollback_segments.txt
[20150715]理解_offline_rollback_segments.txt --曾经写过一篇 [0126]理解_corrupted_rollback_segments,链接http://blog.itpub.net/267265/viewspace-1415396/ --今天测试_offline_rollback_segments参数的情况。
1150 0
|
SQL Oracle 关系型数据库
ORACLE ORA-01653: unable to extend table 的错误
ORACLE ORA-01653: unable to extend table 的错误 今天用PL SQL Developer往oracle数据库中导入数据时,突然报错,只能终止,错误的具体内容如下: ORA-01653: unable to extend table USER_DATA.JKHDFXJL by 128 in tablespace MSMS 大概意思是说USER_DATA表空间不足了,于是google了一下,大概有了些眉目。
1433 0

热门文章

最新文章