Skip to Main Content

Breadcrumb

Question and Answer

Chris Saxon

Thanks for the question, kishore.

Asked: March 11, 2016 - 7:16 pm UTC

Last updated: March 19, 2016 - 6:29 am UTC

Version: oracle 10G

Viewed 10K+ times! This question is

You Asked

Hi Tom,

i have a requirement where i need to update 2 million records in 120 tables (ORACLE).i have created indexes on each table since the same column is referred in where clause and in update statement.Each table has 1 lakh records on an average.Also i have disabled the foriegn key constraints before update.

For this i have a written procedure where it will fetch the records and run the update statments.From the blogs i came to know Bulk Collect & FORALL is good option in oracle .But there is only small difference in time that i can see to run the update statements.Are they any other approach to increase the performance and reduce the time to update the records into the tables.


Could you please help me to find a solution.

Regards,
K.Kishore



and Connor said...

Updating 2 million rows suggests you probably do NOT want indexes on the relevant columns, eg compare the difference

SQL> create table t1
  2  as select d.* from dba_objects d,
  3   ( select 1 from dual connect by level <= 20 );

Table created.

SQL>
SQL> select count(*) from t1;

  COUNT(*)
----------
   1939380

SQL>
SQL> set timing on
SQL> update t1 set object_id = object_id + 1;

1939380 rows updated.

Elapsed: 00:00:47.09

SQL> create index t1_ix on t1 ( object_id );

Index created.

Elapsed: 00:00:05.86

SQL> update t1 set object_id = object_id + 1;

1939380 rows updated.

Elapsed: 00:02:17.85


Rating

  (3 ratings)

Is this answer out of date? If it is, please let us know via a Comment

Comments

kishore kanumalla, March 12, 2016 - 5:39 pm UTC

Hi Tom,

Yeah you are right john as the index will take more time in the update statement.But my update statements are like below

update TABLE EMP set EMPL_NAME='JOHN',EMPL_ID='123' where EMPL_NAME='OLD_JOHN'.

Since i am using the same column in where condition, i have created the indexes.I tested the above update statement with and without indexes and the observation is it is taking more time when it doesn't have any index.

Please provide me any solution for this.Thanks in advance.
Connor McDonald
March 13, 2016 - 1:29 am UTC

Hi,

My statement was not about the WHERE clause, it was about the fact that you need to update 2million records.... which means 2 million index updates as well.

But it's easy to benchmark - you will be comparing

1) update without indexes =
possibly more time spent on full table scan + less time spent updating rows

versus

2) update with indexes =
possibly less time spent on index access + more time spent updating rows

In my experience, people often discount #1 without even trying it.

The other option to consider is parallel dml,

https://docs.oracle.com/database/121/VLDBG/GUID-5EB01FA8-030B-45BB-9B16-2D13881F6010.htm



kishore kanumalla, March 13, 2016 - 5:19 am UTC

THANK YOU. I will try the parallel DML option.

parsing time

Alistair Wall, March 18, 2016 - 3:06 pm UTC

Your SQL has literal values for the new field values, so each record will require a hard parse, which can take a substantial time (search Ask Tom for 'hard parse' or 'use bind variables').
You can avoid this by writing the statement with bind variables, or if you have the source data in a table, using one update statement: update emp_table set (emp_name,emp_id)=select emp_name,emp_id from source_table where source_table.emp_name=emp_table.emp_name.
Different techniques will be efficient depending on whether you are updating all the records in a 2 million record table, or only 2 million records in a 2 billion record table.
Chris Saxon
March 19, 2016 - 6:29 am UTC

True, but (in this case) the parse costs will be negligible compared the 2million rows being updated.

More to Explore

PL/SQL demos

Check out more PL/SQL tutorials on our LiveSQL tool.

PL/SQL docs

PL/SQL reference manual from the Oracle documentation library