we’re dealing with a very slow update statement in an Oracle project.
Here’s a little script to replciate the issue:
drop table j_test; CREATE TABLE J_TEST ( ID NUMBER(10) PRIMARY KEY, C1 VARCHAR2(50 BYTE), C2 VARCHAR2(250 BYTE), C3 NUMBER(5), C4 NUMBER(10) ); -- just insert a bunch of rows insert into j_test (id) select rownum from <dummy_table> where rownum < 100000; -- this is the statement that runs forever (longer than my patience allows) update j_test set C3 = 1, C1 = 'NEU';
There are some environments where the Update-Statement takes just about 20 seconds, some where the statement runs for a few minutes. When using more rows, the problem gets even worse.
We have no idea what is causing this behavior, and would like to have an understanding of what is going on before proposing a solution.
Any ideas and suggestions? Thanks Thorsten
One possible cause of poor performance is row chaining. All your rows initially have columns C3 and C4 null, and then you update them all to have a value. The new data won’t fit into the existing blocks, so Oracle has to chain the rows to new blocks.
If you know in advance that you will be doing this you can pre-allocate sufficient free space like this:
… where PCTFREE specifies a percentage of space to keep free for updates. The default is 10, which isn’t enough for this example, where the rows are more or less doubling in size (from an average length of 8 to 16 bytes according to my db).
This test shows the difference it makes:
As you can see, with PCTFREE 40 the update takes 27 seconds instead of 81 seconds, and the resulting table consumes 232 blocks with no chained rows instead of 694 blocks with 82034 chained rows!