Data modeling questions refer to the techniques used to gather and analyze data requirements needed to support data operations in programs and systems.

learn more… | top users | synonyms

127
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 ...
117
votes
18answers
21k 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 ...
73
votes
17answers
6k 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 ...
44
votes
9answers
1k views

Do you use Styrofoam balls to model your systems?

[Objective-C] Do you still use Styrofoam balls to model your systems, where each ball represents a class? Tom Love: We do, actually. We've also done a 3D animation version of it, ...
43
votes
2answers
6k 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 ...
32
votes
6answers
17k 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 ...
30
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 ...
29
votes
12answers
2k views

Why use an auto-incrementing primary key when other unique fields exist?

I'm taking a course called "database systems" and for our class project I have to design a website. Here's an example of a table I created: CREATE TABLE users ( uid INT NOT NULL AUTO_INCREMENT, ...
27
votes
1answer
2k views

Data modeling in Datomic

I've been looking into Datomic, and it looks really interesting. But while there seems to be very good information on how the Datomic works techically, I have not seen much on how one should think ...
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 ...
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 ...
19
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 ...
16
votes
7answers
947 views

Determine Event Recurrence Pattern for a set of dates

I am looking for a pattern, algorithm, or library that will take a set of dates and return a description of the recurrence if one exits, i.e. the set [11-01-2010, 11-08-2010, 11-15-2010, 11-22-2010, ...
16
votes
4answers
20k 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 ...
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: ??? ...
15
votes
10answers
767 views

Database constraints - keep or ignore?

When I was learning in university, they taught us the database fundamentals, basics and rules, and one of the most important rules is the constraints (primary key, foreign key), and how to make 1-m, ...
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 ...
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 ...
14
votes
5answers
5k 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 ...
12
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, ...
12
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 ...
12
votes
5answers
3k 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) ...
12
votes
6answers
6k views

A good database modeling tool for PostgreSQL?

PostgreSQL comes with the excellent pgAdmin-tool for managing the database but lacks GUI data-modeling utility? I found this list: http://www.databaseanswers.org/modelling_tools.htm but don't have ...
12
votes
2answers
3k views

Data modeling practices in Redis?

I've recently been getting into Redis and find it very appealing. I'd like to see how far I can push it's limits as a database. I read the Retwis tutorial and found it very interesting. I'm wondering ...
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, ...
11
votes
9answers
40k 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?
11
votes
6answers
1k views

Avoid exposing primary keys in the source of a web app?

I often come across web applications that expose internal database primary keys through forms like select boxes. And occasionally I see javascript matching against an int or guid magic value that ...
11
votes
2answers
655 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 ...
10
votes
19answers
3k views

What is the ultimate program to make a drawing of a database model?

One of the first things I do when I'm on a new project is design a database model. To visualize the model I use a 7 year old version of Smartdraw. Maybe it's time for something new. What is the ...
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 ...
10
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 ...
9
votes
7answers
373 views

How to model complex data

I have to create a model that stores gameplay controls for games on several platforms. I am having trouble finding the right approach. Controller buttons are different on different systems (Wii, ...
9
votes
8answers
501 views

What ways are there to store information about an anonymous/guest user in a database?

Our application has an online shop among other features, and users are normally requested to register before completing a sale, creating a unique customer_ID in the process. When they return, they can ...
9
votes
1answer
2k views

Suggest Cassandra data model for an existing schema

I hope there's someone who can help me suggest a suitable data model to be implemented using nosql database Apache Cassandra. More of than I need it to work under high loads and large amounts of data. ...
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 ...
8
votes
3answers
283 views

How to put a complicated equation into a R formula?

We have the diameter of trees as the predictor and tree height as the dependent variable. A number of different equations exist for this kind of data and we try to model some of them and compare the ...
8
votes
10answers
22k views

Tool to draw ER Diagrams

I'm looking for a good tool to help me draw ER (entity-relationship) Diagrams on Windows
8
votes
3answers
2k views

reccomended database schema design books? [closed]

I have some good books on database theory (covering relational calculus, tuples, normal forms etc.) but I'd like a nuts-and-bolts text on appropriate database design: appropriate schema design choices ...
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. ...
7
votes
3answers
9k views

Mysql Datatype for US Zip (Postal Codes)

I am writing a web application, that is US specific, so the format that other countries use for postal codes are not important. I have a list of us zip codes that i am trying to load into a database ...
7
votes
1answer
1k views

Recommended Document Structure for CouchDB

We are currently considering a change from Postgres to CouchDB for a usage monitoring application. Some numbers: Approximately 2000 connections, polled every 5 minutes, for approximately 600,000 new ...
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?
7
votes
2answers
551 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 ...
7
votes
3answers
2k views

Data Model for Social Network?

If I wanted to create a site that allowed users to have 0 or more "friends", how would I model such a relationship in a database? Would something this simple work: Table Friends - Id (PK) - UserId ...
6
votes
4answers
976 views

Is using char as a primary/foreign key a no no?

Consider that there is a bunch of tables which link to "countries" or "currencies" tables. For making data easier to read I'd like make CHAR field with country code (eg US, GB, AU) and currency code ...
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 ...
6
votes
5answers
368 views

Whats better design/practice: Nullable property or 1 value property and 1 bool “has” property?

I'm working on an ASP.NET MVC app, designing the domain models, using (testing) the new EF Code First feature. I have an Activity entity that may or may not have a Deadline, what is the best way to ...
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 ...
6
votes
5answers
1k 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 has free terrain ...
6
votes
4answers
74 views

Got a table of people, who I want to link to each other, many-to-many, with the links being bidirectional

Imagine you live in very simplified example land - and imagine that you've got a table of people in your MySQL database: create table person ( person_id int, name text ) select * from ...

1 2 3 4 5 19