User not logged in - login - register
Home Calendar Books School Tool Photo Gallery Message Boards Users Statistics Advertise Site Info
go to bottom | |
 Message Boards » » need help with database design Page [1]  
psnarula
All American
1540 Posts
user info
edit post

i'm taking a database class at johns hopkins. we have to do a little database project at the end of the semester. I'm struggling with how to set my project up and I'm thinking about just changing my project to something a bit easier to model unless I can get some more direction on how to proceed with this.

Here's my project proposal:

Quote :
"My project uses a database to manage a fantasy Atlantic Coast Conference (ACC) basketball league. At the beginning of the season, users who want to participate begin by creating a group. Then each group creator invites their friends to come and join the group they created. Although users are primarily competing against other users in the same group, the web interface also displays overall point leaders, regardless of which group they might be in.

To participate in the league, a user chooses ten players from a list of active ACC basketball players. The player’s position is not important. Each player can be chosen by multiple users. Each user must divide his players into five “active” players and five “bench” players. Users get points based on the real-game statistics of the active players on their roster. Points are awarded based on the following formula:

Points = (Points scored) + 2*(rebounds) + 3*(assists) – 2*(turnovers) + 2*(steals) + 2*(blocks)

Users cannot change their ten-player rosters during the season. Users may, however, change a player’s status from active to bench and vice versa at any time. Changes to a player’s status become effective at midnight after the change."


From the "fantasy" side of things, I understand that I need to have a player table, a fantasy team table, a fantasy group table, and a fantasy owner table. Each fantasy team belongs to one fantasy group and is managed by one one fantasy owner. Further, each player is owned by one or more fantasy teams.

But how to set up the games and keep track of each fantasy owner's points for a given week is confusing me. I'd like each fantasy owner to be able to see how many points they received for each day and how those points were distributed among the players on their roster. Fantasy owners should also be able to see which players were active on a given day and review a history of their transactions (ie, moving a player to the bench).

I feel like this is spiraling out of control into something more complicated than I can handle. Does anybody feel like helping?

4/25/2006 8:25:19 PM

Maugan
All American
18178 Posts
user info
edit post

Quote :
"But how to set up the games and keep track of each fantasy owner's points for a given week is confusing me. I'd like each fantasy owner to be able to see how many points they received for each day and how those points were distributed among the players on their roster. Fantasy owners should also be able to see which players were active on a given day and review a history of their transactions (ie, moving a player to the bench).
"


I don't know if we have enough details to really give you relevant advice, but from that little blurb above, a self-journaling table is definitely what you want.

Also you might want to think about creating a master table with all the stats in it, and have the application compute all the numbers on the fly instead of storing that shit in the database.

4/25/2006 8:40:12 PM

psnarula
All American
1540 Posts
user info
edit post

what is a self-journaling table?

4/25/2006 10:47:20 PM

ZeroDegrez
All American
3897 Posts
user info
edit post

Just a table you have set to be journaled. Meaning that any changes you do to that table are recorded, so you could reference them later. You could do it with triggers if your db doesn't support "self-journaling".

Quote :
"Also you might want to think about creating a master table with all the stats in it, and have the application compute all the numbers on the fly instead of storing that shit in the database."

Correct. Attempting to record all of this stuff separately would be e-tarded.

4/26/2006 1:06:17 AM

AntecK7
All American
7755 Posts
user info
edit post

Question about DB design myself.

I'm basically making a poor mans CMDB, yes i should use an open source one, yes this is not a sensible project.

Go ahead and forget reasonable things for a bit, lets just assume that none of those things are options, and that I beleive that using a COTS or Opensource solution would be vastly superior than trying to build one in cost, time money, energy and everything else.


Right now i'm using 2 tables CI and Attribute, I might extend another table called Relationship, but right now those are stored in the CI table.

Is this sensible? It needs to be easily extendable, I.E. tomorrow we might need to add a new configuration for example Mobile device, that may not fit in the other classes.

Class struture shown here


5/19/2014 4:52:03 PM

synapse
play so hard
60908 Posts
user info
edit post

Quote :
"i'm using 2 tables CI and Attribute"


and how do you use these two tables to track places, things etc?

5/19/2014 6:05:33 PM

AntecK7
All American
7755 Posts
user info
edit post

I would create a CI called Location, which would have a parent of the base/root element.

I would then add attributes that describe a location for example State, City Zip.

So the CI has a 1 to many relationship with the attribute table.

CI
ID:1
Name:Location
Type:Class

Attribute Table:
ID:1
Name:State
Value:
Owner:1

ID:2
Name:City
Value:
Owner:1

ID:3
Name:ZIP
Value:
Owner:1


Template CIs for example the 1 above would be marked as a "Class" in the database

So for example, I define a Class in CI called Location and mark 3 attributes as belonging to that class.

Now that the Location "Class" is defined in the database, you as a user can create a new "Location"

I.E. you have a drop down that populates all the CIs that are marked as class (ex Server, Location, Agency) and you chose "Location" then create new.

It then adds a new record to the CI database and 3 new attributes that relate to it

CI
ID:2
Name:Raleigh
Type:Location

Attribute Table:
ID:5
Name:State
Value:NC
Owner:2

ID:6
Name:City
Value:Raleigh
Owner:2

ID:7
Name:ZIP
Value:27606
Owner:2


I need to be able to create these "Classes" on the fly, without creating 20 different tables, and within a given class, expand out the attributes that I track.

EX, tomorrow i find out that we need to have a new attribute for locations, lets say "Is Large"

I go into the database and do the following in the attribute table

Attribute

ID:112345
Name:Large
Value:
Owner:1

Now Location has 4 attributes, State, City, Zip, and Large

Now Raleigh doesn't currently have a "Large" attribute, but once i update the "Location" class i've got a process that goes though all the records of type "Location" and copies the newly added attribute to them. Values are usually blank, but for example if I wanted a default value of "No" then I would set that attribute value at the parent.

5/19/2014 8:11:13 PM

Noen
All American
31346 Posts
user info
edit post

^Why not use MongoDB for this? Seems like you're explicitly going to have a dynamic schema, which is going to become a fucking nightmare to manage as soon as you turn this on if you're using SQL Server.

5/19/2014 11:59:46 PM

smoothcrim
Universal Magnetic!
18918 Posts
user info
edit post

yeah, any reason you need a relational datastore? I was going to suggest riak, dynamo, cassandra, or mongo. hell a dynamo index to S3 xml objects would work really well, scale, and port very well to EMR jobs

5/20/2014 12:56:10 AM

AntecK7
All American
7755 Posts
user info
edit post

i wish i knew more about those as options but for now ill be happy if i cam get sql. it is currently built and run in ms access. if you have any reccommended reading ill be happy to see what i can learn.

i don't think the introduction of a new database solution into our environment would really be supported at any level. Ive also got it in my mind to integrate into sharepoint and visio.

i will say that it doesn't have to have real time updates right now im feeding in logs from a ton of systems which get dropped into a import table. i run an import task that handles some normilization and restricts the growth of the actual production table to something reasonable.

i also have a task that rights out a conventional table for each defined class for reporting purposes.

5/20/2014 3:04:57 AM

smoothcrim
Universal Magnetic!
18918 Posts
user info
edit post

http://www.amazon.com/Seven-Databases-Weeks-Modern-Movement/dp/1934356921

if it were me.. i'd push the logs to S3, have data pipeline move them to mysql, and roll from there. if you need a new schema, change the data pipeline config and write a 1 time job to ingest from the old schema

5/20/2014 11:08:38 AM

neodata686
All American
11577 Posts
user info
edit post

It's weird moving to a MPP architecture like Greenplum and not using any type of star schema any more. Everything is just stored in distributed tables. Now we're moving to Hadoop and all that's going out the door.

5/20/2014 11:28:53 AM

AntecK7
All American
7755 Posts
user info
edit post

Those all might be great solutions, but none that I could conceivably implement, either technically or by policy.

Why is it going to be a nightmare to manage in SQL?

5/20/2014 4:33:30 PM

synapse
play so hard
60908 Posts
user info
edit post

Also is his DB setup any better than just using normal relational DB tables...eg: computers, places, projects, etc?

(this must be in MSSQL if you all haven't picked up on that yet)

5/20/2014 4:45:45 PM

Noen
All American
31346 Posts
user info
edit post

If this is for log search, why not just download splunk? http://www.splunk.com/download

Splunk handles the entire data model under the covers, completely dynamic, scales to infinity, and its FREE for commercial use. It will take you all of 30 minutes to have a completely working system. And you can easily plug it into Visio/SharePoint/whatever through its data endpoints.


Dynamic schemas in SQL take exponentially more time to normalize as you add rows. Every row added with a new field requires a complete schema update of EVERY record, PLUS reindexing if you're using indexes.

With even 100k rows, the updates will start taking minutes to complete, which will need to be transactional to ensure the DB doesnt get corrupted, which means you will start building a massive transaction commit queue.

[Edited on May 20, 2014 at 5:11 PM. Reason : .]

5/20/2014 5:10:17 PM

neodata686
All American
11577 Posts
user info
edit post

Why I love that all our tables are append only.

5/20/2014 5:45:30 PM

lewisje
All American
9196 Posts
user info
edit post

just use an Excel spreadsheet lol

5/20/2014 9:12:32 PM

 Message Boards » Tech Talk » need help with database design Page [1]  
go to top | |
Admin Options : move topic | lock topic

© 2024 by The Wolf Web - All Rights Reserved.
The material located at this site is not endorsed, sponsored or provided by or on behalf of North Carolina State University.
Powered by CrazyWeb v2.38 - our disclaimer.