473,405 Members | 2,282 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,405 software developers and data experts.

validation testing -- use TPC-C? (or what?)

z
How can validation testing on DBMSs such as DB2 and Oracle be performed?

Is there a quick commonly used publicly available DBMS test that can be
used?

Could TPC-C be used? If so, where can TPC-C be obtained? (Is is publicly
available?)

Thanks.
Dec 13 '05 #1
6 3855
My TPC knowledge is a bit dated, so take it with a grain of salt.

First of all, make sure you are looking for the right benchmark for the
type of processing you are interested in. For example, TPC-C is a benchmark
that is indicative primarily of rapid transaction processing. There are
other benchmarks for workloads that are more DSS-intensive (TPC-H or TPC-D)
or web-intensive (TPC-W).

Second, I don't know of any publicly available TPC-C kits. It is my
understanding that the source code used for TPC-C benchmark applications are
closely-guarded secrets, since the application code itself might contain
code that accounts for significant performance improvements.
--
--------------------
Larry Menard
"Defender of Geese and of All Things Natural"
"z" <z@y.x.invalid> wrote in message
news:6O*******************@newssvr27.news.prodigy. net...
How can validation testing on DBMSs such as DB2 and Oracle be performed?

Is there a quick commonly used publicly available DBMS test that can be
used?

Could TPC-C be used? If so, where can TPC-C be obtained? (Is is publicly
available?)

Thanks.

Dec 13 '05 #2
"Larry Menard" <ro**@GoSpamYourself.com> wrote in message
news:To******************************@rogers.com.. .
My TPC knowledge is a bit dated, so take it with a grain of salt.

First of all, make sure you are looking for the right benchmark for the
type of processing you are interested in. For example, TPC-C is a
benchmark that is indicative primarily of rapid transaction processing.
There are other benchmarks for workloads that are more DSS-intensive
(TPC-H or TPC-D) or web-intensive (TPC-W).

Second, I don't know of any publicly available TPC-C kits. It is my
understanding that the source code used for TPC-C benchmark applications
are closely-guarded secrets, since the application code itself might
contain code that accounts for significant performance improvements.
--
--------------------
Larry Menard
"Defender of Geese and of All Things Natural"

The TPC benchmarks are published at www.tpc.org

I have reproduced the TPC-H (decision support) benchmark and the tpc.org
site provides you with everything you will need, including the test data
generator program. You may find it a bit difficult to compile the test data
generator program successfully, but I was able to get it to work after
changing a few compile parms. They also supply the schema and queries. You
will want to look at the vendor docs for each benchmark to pick up any
customization they have done to queries to allow for slight variations in
SQL syntax between the databases.

The TPC-C OLTP benchmark may be harder to reproduce as mentioned above, but
details of the benchmarks are published by each vendor on the website so you
could look there.
Dec 13 '05 #3
Larry Menard wrote:
My TPC knowledge is a bit dated, so take it with a grain of salt.

First of all, make sure you are looking for the right benchmark for the
type of processing you are interested in. For example, TPC-C is a benchmark
that is indicative primarily of rapid transaction processing. There are
other benchmarks for workloads that are more DSS-intensive (TPC-H or TPC-D)
or web-intensive (TPC-W).

Second, I don't know of any publicly available TPC-C kits. It is my
understanding that the source code used for TPC-C benchmark applications are
closely-guarded secrets, since the application code itself might contain
code that accounts for significant performance improvements.

Larry,

Actually the rules demand full disclosure. And everything should be
available rom the TPC website. Starting from the algorithms to generate
the data to the exact configuration and sourcecodee for any run.
In theory a competitor can validate a TPC result inhouse
(I doubt that this has ever been done though).
Due to this rule to expose these benchmarks can be challenged.
E.g. Oracle successfully challenged the first SQL Server 2000 TPC-C
benchmark using clustering (partitioned views) because SS2000 couldn't
update the partitioning key.

Cheers
Serge
--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Dec 13 '05 #4
I stand (or actually, sit) corrected.

--
--------------------
Larry Menard
"Defender of Geese and of All Things Natural"
"Serge Rielau" <sr*****@ca.ibm.com> wrote in message
news:40*************@individual.net...
Larry Menard wrote:
My TPC knowledge is a bit dated, so take it with a grain of salt.

First of all, make sure you are looking for the right benchmark for
the type of processing you are interested in. For example, TPC-C is a
benchmark that is indicative primarily of rapid transaction processing.
There are other benchmarks for workloads that are more DSS-intensive
(TPC-H or TPC-D) or web-intensive (TPC-W).

Second, I don't know of any publicly available TPC-C kits. It is my
understanding that the source code used for TPC-C benchmark applications
are closely-guarded secrets, since the application code itself might
contain code that accounts for significant performance improvements.

Larry,

Actually the rules demand full disclosure. And everything should be
available rom the TPC website. Starting from the algorithms to generate
the data to the exact configuration and sourcecodee for any run.
In theory a competitor can validate a TPC result inhouse
(I doubt that this has ever been done though).
Due to this rule to expose these benchmarks can be challenged.
E.g. Oracle successfully challenged the first SQL Server 2000 TPC-C
benchmark using clustering (partitioned views) because SS2000 couldn't
update the partitioning key.

Cheers
Serge
--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab

Dec 14 '05 #5

"z" <z@y.x.invalid> wrote in message
news:6O*******************@newssvr27.news.prodigy. net...
How can validation testing on DBMSs such as DB2 and Oracle be performed?

Is there a quick commonly used publicly available DBMS test that can be
used?

Could TPC-C be used? If so, where can TPC-C be obtained? (Is is publicly
available?)


If you want to validate a database for use in your business environment, the
best thing to do is build a simple prototype of your business app and test
it on the databases you're considering. Both DB2 and Oracle come in
"express" editions, and should be full-featured enough to put a prototype
through it's paces. This way you can play with performance scaling, various
DDL options, backup/restore and other things that you're bound to do when in
production, and really get a feel for what works best in the intended
environment.

To echo someone else's comments -- using an off-the-shelf benchmark (such as
any of the TPC benchmarks) may not be anywhere near close to what your
business needs are, and thus you'd end up with something that isn't a good
fit. It's much like deciding to buy a sports car because it was the fastest
and flashiest, and then finding out that your wife is pregnant with triplets
and you should have bought a mini-van :)

--
Matt Emmerton
Dec 14 '05 #6
Matt Emmerton wrote:
"z" <z@y.x.invalid> wrote in message
news:6O*******************@newssvr27.news.prodigy. net...
How can validation testing on DBMSs such as DB2 and Oracle be performed?

Is there a quick commonly used publicly available DBMS test that can be
used?

Could TPC-C be used? If so, where can TPC-C be obtained? (Is is publicly
available?)

If you want to validate a database for use in your business environment, the
best thing to do is build a simple prototype of your business app and test
it on the databases you're considering.


Absolutely. TCP-? has absolutely nothing to do with the real world and
will provide you zero information related to your specific hardware,
your specific operating system, your specific configuration, your
specific application or anything else.
--
Daniel A. Morgan
http://www.psoug.org
da******@x.washington.edu
(replace x with u to respond)
Dec 14 '05 #7

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

Similar topics

5
by: Mark A | last post by:
DB2 UDB V8.2, eServer p595, and TotalStorage FASt900 published an amazing TPC-C result of 3,210,540 tpmC at a price/performance of $5.19/tpmC, demonstrating 2.7x better performance than Oracle RAC....
6
by: O. Kouame | last post by:
Hi all, Does anyone know where I can find an implementation of the TPC-C benchmark for SQL Server 2000 (preferably written in .NET) ? All I can find is an old Microsoft implementation of TPC-B...
67
by: Scott Meyers | last post by:
I have a web site that, due to maintenance by several people, some of whom are fairly clueless about HTML and CSS, etc. (notably me), has gotten to the point where I'm pretty sure it's suffering...
3
by: Gaetano Mendola | last post by:
I found this article: http://www.serverwatch.com/news/article.php/10824_1126981_Ext that is clear out dated, it's anyway a good comparison with mysql. Do you know if someone did the TPC-C...
3
by: UnixSlaxer | last post by:
Hello, I am trying to validate all the 22-Queries in the TPC-H Benchmark on DB2 UDB 8.2, I am having a little bit of trouble with Query #8 The result should be: YEAR MKT_SHARE 1995 .03...
7
by: Mathew Hill | last post by:
I am a beginner to the more technical aspects of Microsoft Access (2000) and was wondering if any one can help? I have a field in a table called: ADMIN NUMBER This field should have 4...
0
by: Boltar | last post by:
Hello, I am trying to use a CustomValidator control to perform client-side validation via a server callback. I have an example below that validates if a textbox contains an odd number. I...
6
by: Shalu Gupta | last post by:
Hello, We are trying to import the TPC-H data into postgresql using the COPY command and for the larger files we get an error due to insufficient memory space. We are using a linux system...
0
by: Lucky Star | last post by:
Hello All, We have the following requirement. Please send matching profiles along with the rate Expectations, Availability and Contact Details for the same. Position: Lead Validation...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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:
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.