Large DML insert/update hanging tips

简介:

 

Expert Oracle Tips by Burleson Consulting
August 24, 2010

Question:  We were trying to insert approximately 76 million rows with about 4 gigabytes of space with a batch job when the insert operation failed with the archive log error.  What are the best practices for performing large batch insert jobs to avoid hanging?
Answer: When you run a large batch insert or updates job you risk aborting with:

1 – Insert aborts with a ORA-01555 snapshot too old

2 - Insert hangs when your archive redo log directory becomes full.

There are several approaches to performing large batch update or tuning insert jobs:

  • Divide and Conquer:  Make the job re-startable and commit every 1 5 minutes to release held rollback segments (undo logs).
  • Check space in archived redo log filesystem:  Make sure that you have enough spaced to hold all of the new archived redo logs.  See my notes on monitoring Oracle redo log activity.
  • Dedicated undo: Assign a giant, dedicated rollback segment to the batch job, large enough to hold all of the before images for any updates.
  • Parallelize the insert job:  There are two types of parallelism for large DML jobs:  
    (1) You can use parallel DML, or 
    (2) submit multiple simultaneous insert jobs, making sure to you have enough freelists allocated to the table to prevent buffer busy waits.  
    Multiple freelists add additional segment header blocks, removing the bottleneck.  You can also use Automatic Segment Space Management (bitmap freelists) to support parallel DML, but ASSM has some limitations.
  • Bulk DML: Consider using PL/SQL bulk operators to improve load speed by reducing context switching.
  • Consider NOLOGGING: Take a full backup first and run the insert with the NOLOGGING clause.  Note:  INSERT APPEND supports only the subquery syntax of the INSERT statement, not the VALUES clause. For more information on the subquery syntax of INSERT statements see Oracle nologging tips.
  • Use insert append: Using the “append” hint to your insert ensures that you always grab a fresh, dead-empty block from your freelists.  If you are doing parallel DML, the Append mode is the default and you don't need to specify an APPEND hint. 
  • Disable/drop indexes:  It's far faster to rebuild indexes after the data load, all at-once. Also indexes will rebuild cleaner, and with less I/O if they reside in a tablespace with a large block size.

REF:Oracle Tuning- The Definitive Reference Second Edition


本文转自海天一鸥博客园博客,原文链接:http://www.cnblogs.com/sgsoft/archive/2011/01/06/1927053.html,如需转载请自行联系原作者

相关文章
|
5月前
【开发专题_02】Executing an update/delete query
【开发专题_02】Executing an update/delete query
52 0
|
5月前
|
关系型数据库 MySQL 数据库
INSERT IGNORE与INSERT INTO的区别
INSERT IGNORE与INSERT INTO的区别
|
5月前
|
SQL
DML(insert与delete)
DML(insert与delete)
37 0
|
11月前
|
Oracle 关系型数据库 MySQL
MySQL语句执行报错You can‘t specify target table for update in FROM clause
MySQL语句执行报错You can‘t specify target table for update in FROM clause
77 0
|
SQL 关系型数据库 MySQL
mysql操作中 出现You can‘t specify target table for update in FROM clause错误的解决方法
这个错误实际上也不能称之为咱们sql语句写的不行,实际上是我们在一些细节上没有遵循mysql的语法规范。 问题所在:我们一个sql语句中先select这个表,然后再update这个表的内容。 错误示范: UPDATE StuCose SET Grade=60 WHERE Sno IN( SELECT Sno FROM stucose WHERE Grade<=ALL( SELECT MIN(Grade) FROM stucos
318 0
mysql操作中 出现You can‘t specify target table for update in FROM clause错误的解决方法
|
SQL 数据库
开发指南—DML语句—LOAD DATA
本文介绍在PolarDB-X中使用load data进行数据导入的相关限制和注意事项。
109 0
|
SQL
在同一个workprocess里对两张表分别使用online update和update function module update
在同一个workprocess里对两张表分别使用online update和update function module update
148 0
在同一个workprocess里对两张表分别使用online update和update function module update
Unsafe query: ‘Update‘ statement without ‘where‘ updates all table rows at once
Unsafe query: ‘Update‘ statement without ‘where‘ updates all table rows at once
663 0
|
关系型数据库 PostgreSQL
PostgreSQL merge insert(upsert/insert into on conflict) 如何区分数据是INSERT还是UPDATE
标签 PostgreSQL , merge insert , upsert , insert into on conflict , 区分 insert update , xmin , xmax 背景 使用insert into on conflict update语法,可以支持UPSERT的功能,但是到底这条SQL是插入的还是更新的呢?如何判断 通过xmax字段的值是否不为0,可以判断,如果是UPDATE,XMAX里面会填充更新事务号。
2127 0