Data modeling questions refer to the techniques used to gather and analyze data requirements needed to support data operations in programs and systems.
129
votes
5answers
15k views
How do you recommend implementing tags or tagging
I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems ...
10
votes
4answers
3k views
multiple fixed tables vs flexible abstract tables
I was wondering if you have a website with a dozen different types of listings (Shops, Restaurants, Clubs, Hotels, Events) that require different fields, is there a benefit of creating a table with ...
119
votes
18answers
22k 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 far ahead one can ...
11
votes
12answers
3k views
Best way to model Customer <--> Address
Every Customer has a physical address and an optional mailing address. What is your preferred way to model this?
Option 1. Customer has foreign key to Address
Customer (id, phys_address_id, ...
5
votes
9answers
943 views
Relational database design question - Surrogate-key or Natural-key?
Which one is the best practice and Why?
a) Type Table, Surrogate/Artificial Key
Foreign key is from user.type to type.id:
b) Type Table, Natural Key
Foreign key is from user.type to ...
31
votes
6answers
7k views
What are design patterns to support custom fields in an application?
We develop a commercial application. Our customers are asking for custom fields support. For instance, they want to add a field to the Customer form.
What are the known design patterns to store the ...
2
votes
5answers
885 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 on books and notes on ...
22
votes
3answers
5k views
Facebook like notifications tracking (DB Design)
I am just trying to figure out how facebook's database is structured for tracking notifications.
Wont go much into complexity like facebook is. If we imagine a simple table structure for ...
15
votes
4answers
1k views
Handling incremental Data Modeling Changes in Functional Programming
Most of the problems I have to solve in my job as a developer have to do with data modeling.
For example in a OOP Web Application world I often have to change the data properties that are in a object ...
1
vote
6answers
807 views
how to design a schema where the columns of a table are not fixed
I am trying to design a schema where the columns of a table are not fixed. Ex: I have an Employee table where the columns of the table are not fixed and vary (attributes of Employee are not fixed and ...
20
votes
6answers
7k views
What is the best way to represent “Recurring Events” in database?
I am trying to develop a scheduler- and calendar-dependent event application in C#, for which a crucial requirement is to represent recurring events in the database.
What is the best way to represent ...
75
votes
17answers
7k views
Are soft deletes a good idea? [duplicate]
Are soft deletes a good idea or a bad idea?
Instead of actually deleting a record in your database, you would just flag it as "IsDeleted" = true, and upon recovery of the record you could just flag ...
11
votes
5answers
6k views
How to do Inheritance Modeling in Relational Databases?
My question is regarding Inheritance modeling in Relational Database Systems. I have canonical data model and in that I have some fields related to pricing of product inheriting certain attributes ...
7
votes
12answers
2k views
What are the design criteria for primary keys?
Choosing good primary keys, candidate keys and the foreign keys that use them is a vitally important database design task -- as much art as science. The design task has very specific design criteria.
...
14
votes
5answers
6k views
What are the principles behind, and benefits of, the “party model”?
The "party model" is a "pattern" for relational database design. At least part of it involves finding commonality between many entities, such as Customer, Employee, Partner, etc., and factoring that ...
15
votes
21answers
3k views
What should I name a table that maps two tables together?
Let's say I have two tables:
Table: Color
Columns: Id, ColorName, ColorCode
Table: Shape
Columns: Id, ShapeName, VertexList
What should I call the table that maps color to shape?
Table: ???
...
6
votes
4answers
2k views
finding the best trade-off point on a curve
Say I had some data, for which I want to fit a parametrized model over it. My goal is to find the best value for this model parameter.
I'm doing model selection using a AIC/BIC/MDL type of criterion ...
33
votes
6answers
18k views
What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone
What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone.
considerations:
+ for country code
() for area code
x + 6 numbers for Extension extension (so ...
15
votes
3answers
4k views
Alternatives to Entity-Attribute-Value (EAV)?
Our database is designed based on EAV (Entity-Attribute-Value) model. Those who have worked with EAV models know all the crap that comes with for the purpose of flexibility.
I asked my client about ...
12
votes
9answers
41k views
Tools to generate a database diagram/ER diagram from existing Oracle database?
Looking for tools (windows platform) to genereate ER diagram (or similar) from an existing Oracle database.
Any good tools out there that are free to use or low cost?
2
votes
2answers
1k views
Database modeling for a weak entity
I have 2 tables in my database orders and orderHistory.
----------------- -----------------------
| orders | | orderHistory |
----------------- ...
13
votes
10answers
4k views
Should not OLAP database be denormalized for reading performance?
I always thought that databases should be denormalized for reading, as it is done for OLAP database design, and not exaggerated much further 3NF for OLTP design.
PerformanceDBA in various posts, ...
5
votes
6answers
3k views
Modeling a many-to-many relationship in ASP.NET MVC using LINQ to SQL
I've been reading and watching videos about MVC and I'm starting to get a little confused. The simple tutorials are far too simple and they seem to only involve a single database table. Whoopty doo!
...
6
votes
6answers
2k views
Sql recursion without recursion
I have four tables
create table entities{
integer id;
string name;
}
create table users{
integer id;//fk to entities
string email;
}
create table groups{
integer id;//fk to entities
}
create table ...
2
votes
5answers
836 views
Best way to store a many-to-many relationship in MySQL?
Let's say I have a simple database with tables 'posts' and 'tags'. Posts can have many tags and tags can belong to many posts.
What is the best way to structure the database? I thought of using a ...
2
votes
9answers
2k 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 engine for search.
Now, ...
1
vote
6answers
171 views
Max Tables & Design Pattern
I am working on an app right now which has the potential to grow quite large. The whole application runs through a single domain, with customers being given sub-domains, which means that it all, of ...
4
votes
1answer
2k views
Entity Framework CTP5 Code-First Mapping - Foreign Key in same table
How would I map something like this using the modelBuilder? Where theres a nullable foreign key referencing the same tables primary key
Table: Task
taskID int pk
taskName varchar
parentTaskID int ...
2
votes
3answers
304 views
Data modeling question
My clients use one of the following when they sign up for my application:
Foo API (requires a "auth_key", "password", "email")
Acme API (requires a "secure_code", "username", "password")
Bar API ...
44
votes
2answers
7k views
How to implement has_many :through relationships with Mongoid and mongodb?
Using this modified example from the Rails 3 guides, how does one model a relational "has_many :through" association using mongoid?
The challenge is that mongoid does not support has_many :through as ...
11
votes
2answers
667 views
How would I model data that is heirarchal and relational in a document-oriented database system like RavenDB?
Document oriented databases (particularly RavenDB) are really intriguing me, and I'm wanting to play around with them a bit. However as someone who is very used to relational mapping, I was trying to ...
17
votes
4answers
21k views
ExtJS 4: Models with Associations and Stores
Introduction
I'm facing an application design problem with the Ext.data.Model class in ExtJS. I will try to develop my ideas to a very common online store scenario here, so you can follow me. I would ...
7
votes
2answers
565 views
Entity Framework multitenant shared data architecture: single column, multiple foreign keys
I have the following data structure:
//property Notification
abstract class BindableBase { }
//base class for all tenant-scoped objects
abstract class TenantModelBase : BindableBase
{
int ...
5
votes
2answers
868 views
Managing hierarchies in SQL: MPTT/nested sets vs adjacency lists vs storing paths
For a while now I've been wrestling with how best to handle hierarchies in SQL. Frustrated by the limitations of adjacency lists and the complexity of MPTT/nested sets, I began thinking about simply ...
5
votes
2answers
4k views
How to properly cascade delete managed objects in Core Data?
I have a Core Data model which has three entities: A, B, and C. A has a one-to-many relationship with B, and B has a many-to-many relationship with C. The delete rule for A -> B is "Cascade", and B -> ...
2
votes
2answers
1k views
Partitioning a database table in MySQL
I am writing a data warehouse, using MySQL as the back-end. I need to partition a table based on two integer IDs and a name string.
A more concrete example would be to assume that I am storing data ...
5
votes
2answers
857 views
Best way to store tags in a database?
I have a database that contains two tables:
entries
tags
The entries table contains posts that each have one or more tags. The problem is, each post can have any number of tags. In other words, I ...
5
votes
6answers
5k views
Best way to represent a color in a SQL Database?
If I am using .Net and SQL Server 2008, what is the best way for me to store a color in the database, should I use ToString or convert it to an integer, or something else?
Edit:
All I want from the ...
1
vote
4answers
447 views
How to model data with unknown attributes?
What are good ways to model data that will need to be queried but where it's impossible to fully define up front?
For instance... say I want to model information about the countries of the world. ...
0
votes
1answer
112 views
How to design the relations between USER and FAVORITE(or LIKE) models in DB
I have these models(tables): USER, PHOTO, BOOK, QUESTION etc.
And now I wanna add the favorite or like feature to the site, that is user can 'like' some photos or books or questions, and of course a ...
0
votes
1answer
1k views
Database design for general web form
I want to build a back end of a general web form which contains questions which the user can answer. There are multiple types of questions.
"Normal" text question: the question is answered via a ...
20
votes
2answers
10k views
Forward Chaining vs Backward Chaining
What is one good for that the other's not in practice? I understand the theory of what they do, but what are their limitations and capabilities in practical use? I'm considering Drools vs a java ...
7
votes
6answers
4k views
MySQL friends table
I have a MySQL DB in which I store data about each user.
I would like to add a list of friends for each user. Should I create a table of friends for each user in the DB or is there a better way?
12
votes
5answers
4k views
Non-linear regression in C#
I'm looking for a way to produce a non-linear (preferably quadratic) curve, based on a 2D data set, for predictive purposes. Right now I'm using my own implementation of ordinary least squares (OLS) ...
8
votes
2answers
3k views
Xcode consistency error: Setting the No Action Delete Rule… is an advanced setting
After creating a data model in Xcode, it's throwing the following error for each of the object relationships:
Consistency Error:
Setting the No Action Delete Rule on [object relationship] is an ...
5
votes
6answers
1k views
Best implementation for fully auditable data model?
My requirement is for a data model where a full audit trail is retained for changes to every attribute of every object. Object definitions are also fluid: new attributes can appear or go away over ...
5
votes
4answers
19k views
Data Modeling Tool for SQL Server [closed]
do you know any free data modeling tool for SQL Server similar to the ERwin Data Modeler or the ER/Studio?
4
votes
1answer
3k views
Survey Data Model
I'm developing a simple survey module for an ASP application I'm working on and I'd like to get some suggestions on the data model.
Questions can be one of three types - multiple choice, multiple ...
13
votes
3answers
4k views
Relational vs Non-Relational Data Modeling - what's the difference
I'm new to databases and I've never worked with any RDBMS. However I get the basic idea of relational databases. At least I think I do ;-)
Let's say I have a user database with the following ...
5
votes
3answers
4k views
Designing 1:1 and 1:m relationships in SQL Server
In SQL Server 2008, how does one design a 1:1 and 1:m relationship? I appreciate that this is a novice question, but I am just learning the technology.
Thanks


