473,416 Members | 1,558 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,416 software developers and data experts.

How to keep a running total

Hi there. As you will see from my questions, I am an SQL newb. I
dabble but never get to spend enough time to get proficient so base any
feeedback on that basis please. This is all theoretical information at
this point so I am also going to post this in a MySQL related group. I
will create some designs and post back to the group if I get any
feedback I can use.

Problem:

I would like to be able to keep a running percentage total in a field
associated with my users. In order to calculate the totals, I will
parsing a text file with entries from my users in it. The parser (AWK
etc) will search the file for specific text, compare it to information
in another file and output some entries into a csv file which can
subsequently be imported into the database.

The users make posts that are considered good and bad and the rating
percentage must be based on that. For example, if a user makes 10
posts in a day, and 4 of them are considered 'bad' by my criterion, the
rating should reflect a score of 60% for that day.

However, the rating is an ongoing value that will be adjusted daily and
I must maintain a running total against all previous posts. So, lets
say on day two the same user posts 10 more times and 3 are 'bad', I
must adjust his score to reflect a total percentage rating which would
then be 20 posts with 7 being bad for an overall rating of 65% etc.

My question is, how should I go about recording and calculating all
this information?

Here are my thoughts. I have a users table with a field called
something like 'Rating' which stores the overall value (65% etc). This
value would have to be calculated from fields in another table like
'Posts' which records each post in 'Good' and "Bad' fields that
increment. The Good and Bad fields would be incremented (populated)
from the text that gets imported etc.

Looking for thoughts from experienced db designers please. Thanks a
lot in advance for any responses.

Aug 26 '05 #1
5 5668
Hi

The is a group aimed at SQL Server and therefore you may want to post in a
more appropriate forum.

When posting table definitions (DDL) and example data (in a usable form) are
always less ambiguous than a drawn out description see
http://www.aspfaq.com/etiquette.asp?id=5006 although the means of obtaining
these may be different on MySQL. You current attempt(s) and expected output
will also be a good indication of what you are trying to achieve.

I don't know enough about MySQL to post accurate examples , but assuming
your date is in a 8 character column (say formatted 'CCYYMMDD') and each
user is identified by an ID column, then the following may work (although it
may not be the fastest of solutions!):

SELECT a.id, a.date,
(SELECT COUNT(*) FROM MyData b where b.Date = a.Date and Rating = 'Bad' ) AS
TodaysBad,
(SELECT COUNT(*) FROM MyData b where b.Date = a.Date ) AS TodaysTotal,
(SELECT COUNT(*) FROM MyData b where b.Date <= a.Date and Rating = 'Bad' )
AS CumulativeBad,
(SELECT COUNT(*) FROM MyData b where b.Date <= a.Date ) AS CumulativeTotal
FROM MyDate A
WHERE A.Date = '20050827'

John
<fw******@hotmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi there. As you will see from my questions, I am an SQL newb. I
dabble but never get to spend enough time to get proficient so base any
feeedback on that basis please. This is all theoretical information at
this point so I am also going to post this in a MySQL related group. I
will create some designs and post back to the group if I get any
feedback I can use.

Problem:

I would like to be able to keep a running percentage total in a field
associated with my users. In order to calculate the totals, I will
parsing a text file with entries from my users in it. The parser (AWK
etc) will search the file for specific text, compare it to information
in another file and output some entries into a csv file which can
subsequently be imported into the database.

The users make posts that are considered good and bad and the rating
percentage must be based on that. For example, if a user makes 10
posts in a day, and 4 of them are considered 'bad' by my criterion, the
rating should reflect a score of 60% for that day.

However, the rating is an ongoing value that will be adjusted daily and
I must maintain a running total against all previous posts. So, lets
say on day two the same user posts 10 more times and 3 are 'bad', I
must adjust his score to reflect a total percentage rating which would
then be 20 posts with 7 being bad for an overall rating of 65% etc.

My question is, how should I go about recording and calculating all
this information?

Here are my thoughts. I have a users table with a field called
something like 'Rating' which stores the overall value (65% etc). This
value would have to be calculated from fields in another table like
'Posts' which records each post in 'Good' and "Bad' fields that
increment. The Good and Bad fields would be incremented (populated)
from the text that gets imported etc.

Looking for thoughts from experienced db designers please. Thanks a
lot in advance for any responses.

Aug 28 '05 #2
On 26 Aug 2005 12:29:36 -0700, fw******@hotmail.com wrote:

(snip)
Problem:

I would like to be able to keep a running percentage total in a field
associated with my users.


Hi fwells11,

Don't. The basic idea of a databsae is that you don't store information
that can be computed from other information; you compute it whenever you
need it. There are exceptions to this rule (mainly performance-related),
but I don't think your case is one of them.

John already gave you a suggestion. If that doesn't work for you, then
post table structure (as CREATE TABLE statements), sample data (as
INSERT statements) and expected output and I'll see if I can help you
further (note - I can only help you with a MS SQL Server solution, as I
don't speak MySQL).

John already mentioned www.aspfaq.com/5006, so I won't repeat that.

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Aug 28 '05 #3
Thank you John. It is going to take me some time to be able to post
some DDL info that can be expounded on. Hopefully I can post something
useful within a few days.

Aug 30 '05 #4
Thank you Hugo. The rating number will be viewed hundred, maybe
thousands of times per day. I suspect that I cannot afford the
performance hit associated with calculating the value with every page
hit. There doesn't seem to be much point to an on-the-fly calculation
if that figure only changes daily either...

In regards to having the db process my data, unfortunately the raw data
only comes in the form of huge text files. Files so large they really
need to be parsed for the information I need, compared with each other
then fed into yet another small but focused file with only the set of
information that then needs to be inserted into the db. Nothing would
make me happier than not having to deal with external data but I don't
see how I can do this any other way. Please enlighten me if you do
believe SQL server can accomplish something like this.

Hopefully I will have something more concrete to post in a few days
when I can give this some more thought and possibly throw some actual
examples of the data to the group.

Best Regards,
-Frank

Aug 30 '05 #5
On 29 Aug 2005 22:38:58 -0700, fw******@hotmail.com wrote:
Thank you Hugo. The rating number will be viewed hundred, maybe
thousands of times per day. I suspect that I cannot afford the
performance hit associated with calculating the value with every page
hit. There doesn't seem to be much point to an on-the-fly calculation
if that figure only changes daily either...
Hi Frank,

Sorry for the delayed reply. An illness kept me from the computer for
most of the last days.

In that case, I agree that it's better to calculate it once and store
it. But you might still have a chance to have the database do all the
dirty work.

Create a VIEW to calculate the information you needed. Make sure that
you use all the options and navigate around all the limitations of
indexed views. Then, create a clustered index on the view. This will
force SQL Server to "materialize" the view (i.e. it will execute it
once, store the results, and make sure to change the stored results when
once of the rows used in the calculation changes).

It's possible that the extra work to keep the materialized view correct
slows down the batch process for importing new data. If that's the case
for you, then you can consider dropping the view before the import and
recreating it when the import is finished.
Hopefully I will have something more concrete to post in a few days
when I can give this some more thought and possibly throw some actual
examples of the data to the group.


I'm looking forward to it!

Best, Hugo

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Sep 2 '05 #6

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

Similar topics

4
by: James Greig | last post by:
hello people, i'm just learning javascript, could someone point me in the direction of an example of the following, or give me some clues as to how it might be done: what i would like to do...
2
by: Peter Bailey | last post by:
I have a query that creates a graph of bookings from the course start date looking back 20 weeks based on a running sum. I also have a query that counts the number of bookings before that 20 week...
16
by: Gandalf186 | last post by:
I need to create a query that produces running totals for every group within my table for example i wish to see: - Group A 1 5 9 15 Group B
0
by: trembita | last post by:
I have to databases that I connected together using a UNION. That was not a problem. I now need to create a running total using all of the data within the UNION. I can make a running total that...
2
by: Jana | last post by:
Using Access 97. Background: I have a main report called rptTrustHeader with a subreport rptTrustDetails in the Details section of the main report. The main report is grouped by MasterClientID. ...
7
by: mail747097 | last post by:
I would like to keep IIS alive on my web site and prevent Application_End from occuring in global.asax. Any ideas?
6
by: Stuart Shay | last post by:
Hello All: I have a array which contains the totals for each month and from this array I want to get a running total for each month decimal month = new decimal; month = 254; (Jan) month =...
1
by: =?Utf-8?B?QWxwaGFwYWdl?= | last post by:
Hello, I have built an object which does some jobs on a particular server. There can have lots of this object running concurrently. I want to know what is the best way to optimize my...
1
by: Delqath | last post by:
I have a field in my database that keeps track of what hotel people are staying at and I need to keep a running total of how many people are staying at which hotel. I swear this should be really...
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
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
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
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
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.