473,434 Members | 1,834 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,434 software developers and data experts.

Udb Db2 Vs 7.2 Vs 8 Upgrade Resulting In Increased Insert Times

In our shop we have a 28,000,000 row insert that gets reloaded every
night. I am not looking to change this process. I would like to know
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.

On, a test box I did some testing.
The source in UDB version 7.2 fixpack 9 is reading at 20000 rows a
second.
The source in UDB version 8.1 fixpack 6(non-partitioned) is reading at
13200 rows a second.
The target in UDB version 7.2 is inserting at 4800 rows a second.
The target in UDB version 8.1 is inserting at 1600 rows a second.

This is really close to the percentages of throughput I am getting in
prod so I thought it would be a good place to tune.

I also looked at the database side by doing a
insert into table2
select * from table1
Vs 7.2 is 13000 / sec
Vs 8.1 is 10000 /sec
So to me it looks like UDB and Informatica are collaborating to cause
this issue.

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).

Any help would be appreciated.
Nov 12 '05 #1
7 2097
Hi,

jafastinger wrote:
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.


I don't know the application you are running but did you run runstats on
your tables after migrating to 8.1 ? I would recommend to do so and run
your tests again after collecting the Stats. Helped in my environment
during migration from 7.2 to 8.1.4.
regards,

Norbert
Nov 12 '05 #2
Ian
jafastinger wrote:

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).


Did you (at some point) rebind the packages on your 7.2 system to
use buffered inserts?

This is a common recommendation from Informatica, and this is not
the default configuration for DB2 (rightly so).

Nov 12 '05 #3
Did you store your dbm/db cfg parms from V7 somewhere? Is it possible
that some of the cfg parms were changed by the migration? I have heard
of situations where this has happened.

Larry Edelstein

jafastinger wrote:
In our shop we have a 28,000,000 row insert that gets reloaded every
night. I am not looking to change this process. I would like to know
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.

On, a test box I did some testing.
The source in UDB version 7.2 fixpack 9 is reading at 20000 rows a
second.
The source in UDB version 8.1 fixpack 6(non-partitioned) is reading at
13200 rows a second.
The target in UDB version 7.2 is inserting at 4800 rows a second.
The target in UDB version 8.1 is inserting at 1600 rows a second.

This is really close to the percentages of throughput I am getting in
prod so I thought it would be a good place to tune.

I also looked at the database side by doing a
insert into table2
select * from table1
Vs 7.2 is 13000 / sec
Vs 8.1 is 10000 /sec
So to me it looks like UDB and Informatica are collaborating to cause
this issue.

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).

Any help would be appreciated.


Nov 12 '05 #4
Norbert Munkel <nm@acoreus.de> wrote in message news:<jM***************@se2-cb104-9.zrh1.ch.colt.net>...
Hi,

jafastinger wrote:
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.


I don't know the application you are running but did you run runstats on
your tables after migrating to 8.1 ? I would recommend to do so and run
your tests again after collecting the Stats. Helped in my environment
during migration from 7.2 to 8.1.4.
regards,

Norbert


we ran a convert of our indexes because of the type-2 indexes in Vs 8
and also had to run runstats after that. I set this up in our test
environment and got the same results but with ~6 Million rows.
Thanks,
Nov 12 '05 #5
Larry <la***@nospam.net> wrote in message news:<4C********************@news4.srv.hcvlny.cv.n et>...
Did you store your dbm/db cfg parms from V7 somewhere? Is it possible
that some of the cfg parms were changed by the migration? I have heard
of situations where this has happened.

Larry Edelstein

jafastinger wrote:
In our shop we have a 28,000,000 row insert that gets reloaded every
night. I am not looking to change this process. I would like to know
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.

On, a test box I did some testing.
The source in UDB version 7.2 fixpack 9 is reading at 20000 rows a
second.
The source in UDB version 8.1 fixpack 6(non-partitioned) is reading at
13200 rows a second.
The target in UDB version 7.2 is inserting at 4800 rows a second.
The target in UDB version 8.1 is inserting at 1600 rows a second.

This is really close to the percentages of throughput I am getting in
prod so I thought it would be a good place to tune.

I also looked at the database side by doing a
insert into table2
select * from table1
Vs 7.2 is 13000 / sec
Vs 8.1 is 10000 /sec
So to me it looks like UDB and Informatica are collaborating to cause
this issue.

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).

Any help would be appreciated.


We stored them off and reset them back up like they were in vs 7
We opend a ticket with IBM and with informatica. we will see what shakes out.
Thanks for replying.
Nov 12 '05 #6
Ian <ia*****@mobileaudio.com> wrote in message news:<41**********@newsfeed.slurp.net>...
jafastinger wrote:

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).


Did you (at some point) rebind the packages on your 7.2 system to
use buffered inserts?

This is a common recommendation from Informatica, and this is not
the default configuration for DB2 (rightly so).


Our Vs7 database did not have the packages bound with Insert buf. So
we did not bind the Vs 8 with insert buf. I will try this in OUR test
environment and let you know. we will see.
Nov 12 '05 #7
ja*********@aep.com (jafastinger) wrote in message news:<1d**************************@posting.google. com>...
Larry <la***@nospam.net> wrote in message news:<4C********************@news4.srv.hcvlny.cv.n et>...
Did you store your dbm/db cfg parms from V7 somewhere? Is it possible
that some of the cfg parms were changed by the migration? I have heard
of situations where this has happened.

Larry Edelstein

jafastinger wrote:
In our shop we have a 28,000,000 row insert that gets reloaded every
night. I am not looking to change this process. I would like to know
why in UDB Vs 7.2 we were getting an insert rate of 3300 rows per
second. We migrated to version 8.1 of UDB (non-partitioned) and now
the rate decreased to ~1100 rows per second. The only thing we changed
is the database version.

On, a test box I did some testing.
The source in UDB version 7.2 fixpack 9 is reading at 20000 rows a
second.
The source in UDB version 8.1 fixpack 6(non-partitioned) is reading at
13200 rows a second.
The target in UDB version 7.2 is inserting at 4800 rows a second.
The target in UDB version 8.1 is inserting at 1600 rows a second.

This is really close to the percentages of throughput I am getting in
prod so I thought it would be a good place to tune.

I also looked at the database side by doing a
insert into table2
select * from table1
Vs 7.2 is 13000 / sec
Vs 8.1 is 10000 /sec
So to me it looks like UDB and Informatica are collaborating to cause
this issue.

Since the insert select in vs 8.1 is 75% of the vs7.2
In Informatica vs 8.1 is consistently 33% of vs 7.2.

By the way we are using Informatica Power center 6.2.1 (R133 D41).

Any help would be appreciated.


We stored them off and reset them back up like they were in vs 7
We opend a ticket with IBM and with informatica. we will see what shakes out.
Thanks for replying.

Problem solved. Version 6.2.2 of informatica seemed to solve the
problem there was a patch applied for something to do with casting
Char fields as LONVARCHAR and that seemd to cause the bottle neck.
migrating informatica 6.2.2 to production soon.
Nov 12 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Ruth | last post by:
Hi All I am not a DBA, but a unix administrator. After our DBA's upgraded from oracle 8.0.5 to oracle 8.1.7.4 on our test server, we have noticed a big slow down in our application...
7
by: Abdul-Wahid Paterson | last post by:
Hi, I have had a site working for the last 2 years and have had no problems until at the weekend I replace my database server with a newer one. The database migration went like a dream and I had...
1
by: Roger | last post by:
running on XP pro adding vba code, I want to type in 'X = "good"' when I type the 'X', and a 'space', if I wait a second, the cursor automatically moves back over the 'space' when I type the...
2
by: Kelt | last post by:
I have a user who currently has Access 97 installed on her PC. She has purchased a new PC and would like to have Access installed on it. She would like to upgrade her current Access to Access...
47
by: ship | last post by:
Hi We need some advice: We are thinking of upgrading our Access database from Access 2000 to Access 2004. How stable is MS Office 2003? (particularly Access 2003). We are just a small...
10
by: Mike | last post by:
I know this sounds strange but I am at a loss. I am calling a simple funtion that opens a connection to a SQL Server 2000 database and executes an Insert Statement. private void...
5
by: Pieter | last post by:
Hi, I have a VB.NET (2.0) application that integrates with Outlook 2003. I have windows XP SP2. The users had Windows 2000, and Office 2000. They upgraded (!) to Office 2003. But: - an...
7
by: cwdjrxyz | last post by:
I just installed the new Firefox 2.0 browser without problems. This is a major upgrade, and you need to go to the Firefox site and read the release notes before you download it. There are a few...
0
by: HD | last post by:
hi. i have just upgraded from version 4.1 to 5.1 but the server load increased from 0.30 to 1.20. same options in my.cnf so i can't understand the reason. using debian etch any experience like...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.