想用hash join可是temp空间不够
insert into temp_wow_uuid select /*+use_hash(the9.memb_info_mapping temp_wow_lg)*/ uuid from the9.memb_info_mapping a,temp_wow_lg b where a.loginname=b.loginname
*
ERROR at line 1:
ORA-12801: error signaled in parallel query server P000
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
只好:
insert into temp_wow_uuid select /*+use_hash(the9.memb_info_mapping temp_wow_lg)*/ uuid from the9.memb_info_mapping a,temp_wow_lg b where a.loginname=b.loginname
insert into temp_wow_uuid select /*+use_hash(the9.memb_info_mapping temp_wow_lg)*/ uuid from the9.memb_info_mapping a,temp_wow_lg b where a.loginname=b.loginname
*
ERROR at line 1:
ORA-12801: error signaled in parallel query server P000
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
只好:
insert into temp_wow_uuid select /*+use_hash(the9.memb_info_mapping temp_wow_lg)*/ uuid from the9.memb_info_mapping a,temp_wow_lg b where a.loginname=b.loginname
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/8135069/viewspace-613352/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/8135069/viewspace-613352/
854

被折叠的 条评论
为什么被折叠?



