summerizing multiple items at once.

This is a discussion on "summerizing multiple items at once." within the Databases section. This forum, and the thread "summerizing multiple items at once. are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Databases

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 20th, 2007, 17:38
New Member
Join Date: Sep 2007
Location: Canada
Age: 23
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Question summerizing multiple items at once.

Hello,

I was hoping someone here can help me out.

The Scenario is this:

We have an application here that produces general reports for our product, displays items received, the amount of error on the item, how many pages it is, the type of errors the stage in the process it’s at and the flag it’s been set to. As well as the accuracy. (there is more but these are the relative items.

Currently we display a nice grid of this information with no summary and we can get up to 5000 entries a day.

My boss has asked me to summarize it.

So he wants to know how many of each error type, how many of each stage the average of the accuracy, the total pages received, and so on. Broken down below:


CharAccur: 99,78,88,54,100
Errortype: TE,TR,TL,RR,TL
Stage: RE,ARC,AR,EX.EX
Flag: Released, Cancel, release, release, release
NumPages: 2, 3,5,2,2,
Total: 5 rows in total

So this is the data, the columns with there respective data

Now what I need to do to each.

CharAccur – Average all values
Error Type: count each error type occurrence eg. TE=1, TR=1,TL=2, RR=1
Stage: count each stage type occurrence
Flag: Count each Flag type occurrence
NumPages: Add all pages up
Total: count all returned rows.

I would like the output to be one line that has the headers like this:

CharAccur | TE | TR | TL | RR | RE and so on. And below them the values retrieved.

I know I can do this on the webpage side if I must but would be much better to do it Server side.

I tried building a whole slew of SQL Select statements for each type that got the counts and what not and then “UNION” but it does not work correctly and instead returns the first column name and a row under it for each select statement.

Any help would be appreciated we are using: MS SQL 2000

Thanks for any help.
Reply With Quote

  #2 (permalink)  
Old Sep 20th, 2007, 20:45
c010depunkk's Avatar
SuperMember

SuperMember
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: summerizing multiple items at once.

One word: PHP
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
passing items to paypal dab42pat PHP Forum 5 Jun 16th, 2007 10:13
Animation for menu items David Blake Flash & Multimedia Forum 12 Jun 14th, 2007 00:54
PHP includes menu - problems with sub-items fallen_angel PHP Forum 3 Jan 19th, 2007 17:15
display mean and variance of purchased items chikenyd Other Programming Languages 1 Nov 4th, 2006 21:10
how to submit all items from a multiple select control to an andrew_perez5 Classic ASP 6 Jan 5th, 2005 13:28


All times are GMT. The time now is 07:33.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43