Tagged Questions

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

82
votes
5answers
8k 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 ...
81
votes
16answers
12k 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 ...
45
votes
16answers
2k views

Are soft deletes a good idea?

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 ...
43
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, ...
23
votes
12answers
954 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, ...
18
votes
6answers
3k 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 ...
16
votes
7answers
468 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, ...
13
votes
10answers
446 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, ...
13
votes
4answers
677 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 ...
13
votes
21answers
1k 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: ??? ...
12
votes
4answers
2k 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 ...
10
votes
2answers
309 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
3answers
437 views

Relational vs Non-Relational Data Modeling - what's the difference

I'm now 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 ...
10
votes
19answers
2k 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 ...
9
votes
4answers
467 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) ...
9
votes
5answers
3k 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 ...
9
votes
6answers
7k 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 ...
8
votes
2answers
3k 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 ...
8
votes
1answer
1k 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
6answers
669 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 ...
8
votes
4answers
3k 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 ...
7
votes
9answers
373 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 ...
7
votes
3answers
1k 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 ...
7
votes
4answers
1k 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 ...
7
votes
3answers
3k 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
12answers
1k 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, ...
6
votes
10answers
1k 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, ...
6
votes
3answers
849 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
5answers
302 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
1answer
729 views

Variable Substitution with FetchRequests stored in a CoreData Model

I've always created my NSFetchRequests entirely in-code. Now I'm looking at the Xcode GUI for building a fetch request and storing it in the model. I'm following an example from the Xcode ...
6
votes
4answers
58 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 ...
6
votes
1answer
148 views

SQL database Structure

I've got a list of synonyms and need to create a database in SQL for it. I was thinking about using a Relational Database Design, but don't know if it would be the best. There will be a decent ...
6
votes
6answers
861 views

a layman's term for identifying relationship

There are couples of questions around asking for difference / explanation on identifying and non-identifying relationship in relationship database. My question is, can you think of a simpler term ...
6
votes
5answers
2k 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 ...
6
votes
3answers
998 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 ...
6
votes
4answers
443 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
5answers
378 views

High-Level Design Patterns or Not Reinventing The Wheel

The Holy Grail of programming is to solve a problem once and make continual reuse of that solution forevermore. And, yet, despite my best efforts I find that I am often reworking familiar problems. ...
6
votes
6answers
580 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 ...
5
votes
3answers
205 views

DSL in Clojure that replaces an object-oriented software solution?

Hi guys : I was wondering wether anyone knew of a concrete example of a DSL in Clojure which replaces the abstraction and readability of a good OO program (written in, say , Java). I've been trying ...
5
votes
1answer
4k 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 ...
5
votes
2answers
56 views

opinions and advice on database structure

I'm building this tool for classifying data. Basically I will be regularly receiving rows of data in a flat-file that look like this: a:b:c:d:e a:b:c:d:e a:b:c:d:e a:b:c:d:e And I have a list of ...
5
votes
1answer
397 views

Entity Framework CTP5 (Code First) Modeling - lookup tables

Assume the following table structure: Tables: **Tasks** taskID int PK taskName varchar **Resources** resourceID int PK resourceName varchar **Assignments** assignmentID int PK taskID int FK ...
5
votes
2answers
778 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 ...
5
votes
2answers
317 views

Database design in GAE/J : relational modelling vs entity-attribute-value

Imagine you plan to create a social network running on GAE/Java where each user has a set of properties (i.e. age, current town, interests). Alternative 1: classical approach - the user_id and every ...
5
votes
5answers
205 views

Database Design for Multi-use Table

Say you have multiple "things" which can each have one or more comments attached. Product and Order, for instance. How should the tables be structured.... Product, Order, Comment, ProductComment { ...
5
votes
3answers
161 views

SQL Architecture: Is this a justified case to have only one table storing multiple entity types? (using a self JOIN)

I rarely come across a situation where a single table for multiple entity types seems better than one table per entity type. Here's an example that makes sense to me, but academically it seems wrong. ...
5
votes
2answers
348 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
1k 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?
5
votes
2answers
564 views

Development Platforms for Financial modeling (What do the Quants use?)

Quantitative Analysts or "Quants" predict the behavior of markets to maximize profits. I am interested in the software that they use to accomplish this. Are there development platforms, libraries, ...
5
votes
5answers
1k 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 ...

1 2 3 4 5 14