0
votes
4answers
36 views
MySQL, per found record join a different parent table.
I have the following parent <-> child datamodel:
(almost every line is a table, indented means child-of)
consumerGoods
food
meat
item
fruit
…
0
votes
0answers
6 views
Sharing referential data across multiple applications
I have 3 asp.net applications. They all have common referential data tables like Categories, Countries, Provinces, etc. My intention is to share these referential tables across the …
1
vote
4answers
138 views
Domain Model Design
How would you create a domain model for this simple example?
A recipe can have many ingredients and an ingredient can be used in many recipes.
How much of each ingredient used in e …
1
vote
7answers
73 views
Help with db schema?
I am creating a simple blog app and so far I have 3 tables, Posts, Comments, and Authors.
I will just list the primary key for each table as well as a foreign key.
Posts will con …
0
votes
1answer
38 views
Data model for storing categories (multiple parent nodes)
I've the following category structure:
- Transport (10)
- Cars (5)
- Audi (2)
- BMW (3)
- ...
- Spare Parts (5)
- Audi (5)
- Audi g …
3
votes
5answers
107 views
Where to get Terrain Data - both free and paid?
Where can you get terrain data? What resolution data can you get for free? What resolution data can you get when you buy the data? How much is that data? I found this site that …
0
votes
2answers
91 views
Modeling entities for specific applications - Entity Framework
Hi,
I have 2 applications:
Manager UI - Which should be able to create a user with all its fields (username, email, age etc.) and display them.
Core component - which only need t …
3
votes
11answers
226 views
Storing multiple choice values in database
Say I offer user to check off languages she speaks and store it in a db. Important side note, I will not search db for any of those values, as I will have some separate search engi …
0
votes
6answers
43 views
Adding an ad to a mysql database; Point me in the right direction please…
Currently, I have an 'add your ad here' page, with a form.
Now, the user must select what category he will want to post an ad into...
So I have a table for each category in mysql …
3
votes
3answers
66 views
Rails modeling: converting HABTM to has_many :through
I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using has_and_ …
3
votes
4answers
71 views
Many to many relationship
I have a customers and managers, two tables independently. My customer table have nearly hundred million records whereas manager table have 100 records. Now i am in position to map …
24
votes
10answers
2k views
What’s the best way to model recurring events in a calendar application?
I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how f …
0
votes
1answer
58 views
Is this a good data model to implement strongly-typed roles?
Yes, this has been asked before here and here. I'm curious as to whether the approach I'm considering is architecturally sound.
Let me start off by trying to describe what I'd lik …
0
votes
5answers
93 views
DB design to use sub-type or not?
The database I'm designing has 3 major tables: BOOKS, ARTICLES, NOTES.
Each book or article can have multiple notes, my original design was just like that, which means both notes o …
1
vote
3answers
163 views
ER Diagram (Drawing)
For a relational database that represents the current term enrollment at a large university, what is the ER diagram for a schema that takes into account all the assertions given:
…
