Tagged Questions
The database-modeling tag has no wiki summary.
15
votes
4answers
2k views
Where is the line between DAL and ORM?
The terms are often thrown around interchangeably, and there's clearly considerable overlap, but just as often it seems implied that people see something strongly implied by saying that a system is an ...
12
votes
5answers
554 views
Database Design: how to model generic price factors of a product/service?
I'm trying to create a generic data model that will allow for a particular product (indicated by the FK product_id in the sample table below) to specify 0 or more price "factors" (I define "factor" as ...
7
votes
8answers
1k views
Visiomodeler/NORMA - Object Role Modeling (the other ORM) - who uses it?
For a number of years I've used Object Role Modeling to design and validate my database schema designs. (The appurtenant software products have been variously named Visiomodeler, Infomodeler, Visual ...
7
votes
17answers
4k views
A good database modeling tool?
Could you guys recommend me a good db modeling tool? Mainly for SQL Server...
thanks!
6
votes
2answers
594 views
Database Modeling: Facebook like messages
I'm trying to mimic something similar to FB. Basically, users can post comments in various parts of a user's profile (e.g. "wall", a "photo", etc.). I think the following model will work:
...
4
votes
5answers
304 views
Database modeling software with non-binary file format?
Do you know a database modeling software whose the file format can safely be tracked by a VCS without always creating conflicts ? (i.e. a non-binary file format.) It would be great if the software ...
4
votes
3answers
292 views
Database Design: name-value pairs - good or bad?
Say I have an online store wherein each product has a single category (and there are hundreds of categories to choose from) assigned to it (e.g. "book", "portable DVD player", etc.). If I needed to ...
3
votes
4answers
64 views
Tips on managing a large number of database tables for a given database model
I am working on a MySQL database with over 60 tables. I use MySQL workbench for database modelling. I have broken down the model into several diagrams.
However I find it very difficult to manage ...
3
votes
1answer
1k views
Database modeller for JPA with visual diagrams
I am looking for a tool to help in designing and implementing database and entities for a Java project. Probably we are using JPA or direct Hibernate. The features I look for are:
Design database ...
3
votes
2answers
353 views
Best MySQL management tool?
I am looking for a complete integrated MySQL management / admin tool (hopefully that can run in Linux). I need the ability to graphically model my tables and relationships (reverse/forward ...
3
votes
7answers
478 views
What are the general guidelines and best practices to keep in mind while designing database for an application?
My questions is regarding Database Modeling. I tried to look for this question amongst other Database Designing questions on SO but haven't found it and so here am asking about:
What are the general ...
2
votes
3answers
121 views
Identifying one-to-many relationship
I have some questions about meanings of identifying one to many relationship. I read some other related questions on stack overflow, but I need a bit more information :)
Lets suppose we have table ...
2
votes
3answers
160 views
Create database model classes dynamically
I am trying to improve the method that I am using to to database transactions in a light framework I've built.
Information to understand the question:
Here's a class I've written (where connect.php ...
2
votes
2answers
73 views
LAMP: How to Implement Scheduling?
Users of my application need to be able to schedule certain task to run at certain times (e.g. once only, every every minute, every hour, etc.). My plan is to have a cron run a script every minute to ...
2
votes
2answers
109 views
Data-modeling problem: weak entity owned by two unrelated tables
Suppose I have the following tables: "User", "Computer" and "Command". Users and computers may have 0 or 1 commands associated with them. A command is always owned by one (and only one) of these two. ...
2
votes
2answers
126 views
Modeling database for a browser game
I work on a browser game developed with symfony for school project.
In my schema I have a table player and a table inventory (which contains different items) with relation one-to-one.
I'm not sure ...
2
votes
3answers
124 views
What do you model and when? (Enterprise, Application and Database Design Modeling)
Immagine that you are designing a web application that could possibly grow to the scale of Amazon or Google. In the beginning you start with only one small aspect of the project knowing that, in the ...
2
votes
1answer
70 views
Best approach for well-known rows in user-customizable table?
I write database applications for a living that the end user can customize.
Frequently, this means that--leaving the database aside for a moment--some of my notional entity types have a universe or ...
2
votes
3answers
632 views
Database MySql design - varchar length for utf8 fields :: 1. password 2. username 3.email
Most of the times I define varchar(255) length auto.
But now I thinking how much varchar length should be best to define for utf8 fields:
password
username
email
If this fields should be define ...
2
votes
3answers
1k views
(Database Design - products attributes): What is better option for product attribute database design?
I new in database design.
What is better option for product attribute database design for cms?(Please suggest other options also).
option 1: 1 table
products{
id
product_name
color
price
...
2
votes
1answer
227 views
Database Design: Why do some ecommerce database have separate tables for products and product_variants?
Why do some ecommerce database have tables:
product
product_variant
Why not only one product table with all teh fields of product_variant and is_default_product(bool) field?
Thanks
2
votes
2answers
152 views
Creating a db driven primary navigation in django?
I find that it's pretty common most people hardcode the navigation into their templates, but I'm dealing with a pretty dynamic news site which might be better off if the primary nav was db driven.
So ...
2
votes
6answers
267 views
Should I model with an association table for future flexibility?
This is a database modeling question.
I normally model one-to-many with a standard parent-child table setup, and I normally model many-to-many with an association table between the 2 tables. In this ...
2
votes
2answers
204 views
Who is the Fielding of Temporal Database modeling?
It doesn't take very much reading on REST before you run across Fielding and his dissertation
IF you've had some wins with temporal modeling within the confines of a relational store Who are the big ...
2
votes
4answers
702 views
Dynamic Types within a Relational Model using Object-Role-Modeling (ORM)
In Object Role Modeling (ORM), given an entity of thing that had a relationship to an entity of type and where the type entity can be specified to live and the thing entity could have a value for date ...
2
votes
4answers
830 views
database modeling mac app for ruby on rails development
I am building web applications using Ruby on Rails and I would like to know what's the best tool for OS X to mock a new application from a functionality perspective and not graphic design. I would ...
2
votes
4answers
614 views
Database : best way to model a spreadsheet
I am trying to figure out the best way to model a spreadsheet (from the database point of view), taking into account :
The spreadsheet can contain a variable number of rows.
The spreadsheet can ...
1
vote
1answer
44 views
Database table and NULLs [migrated]
I know that there have been many opinions/sides concerning NULL values in a database.
I have not understood though what is the best practice for this.
I.e. if I have a relational table with an ...
1
vote
1answer
60 views
A Database with days and corresponding prices
I need advice from you guys. I want to develop a database, which will store about 20 items and there are 5 seasons. Each season is about 2-5 weeks long. To each season corresponds particular price.
...
1
vote
1answer
94 views
Model Location Timeline of Object
I am looking to model the timeline of an object. For example, a database model with airplanes and airports will have a class/table consisting airplanes arrival at airports and and the departure from ...
1
vote
4answers
212 views
Database Design: simplifying many to many
Say I have the following tables:
person (person_id, name)
ethnicity (ethnicity_id, name)
person_ethnicity (person_id, ethnicity_id)
This would allow me to define a person to have 0 or more ...
1
vote
3answers
219 views
Database Design: use composite key as FK, flag data for sharing?
Assume multiple vendors selling identical products. Each product has a number of possible colors. Finally, assume that the initial state of the database is that it is not aware of these products or ...
1
vote
7answers
759 views
DATABASE DESIGN - Primary key for COUNTRY, CURRENCY int or varchar
For my country table, I used the
country code as the primary key "AU,
US, UK, FR" etc
For my currency table, I used the currency code as the primary key "AUD, GBP, USD" etc
I think what I did is ...
1
vote
2answers
513 views
Data Modeling: Logical Modeling Exercise
In trying to learn the art of data storage I have been trying to take in as much solid information as possible. PerformanceDBA posted some really helpful tutorials/examples in the following posts ...
1
vote
2answers
147 views
Mysql database modeling from Linux
I have mySQL database that I see form my Ubuntu shell, I want to run some modeling tool so that I can visualize the relationships
Please let me know how can I do that
Thank you
1
vote
1answer
245 views
Datamapper DB Pattern With ZF: Managing a Relational Database
I am creating an application using Zend Framework and I want to use the data mapper design pattern for managing my database. What I don't understand is how to use the pattern with a relational ...
1
vote
1answer
327 views
Data Modeling: hierarchy of geographic locations
I want my users to be able to specify their locations so that I can plot them on a map. Given an address, I use Google Maps API to get their lat/long coordinates and store that in the database.
...
1
vote
1answer
1k views
What are some useful online database modeling applications?
I realize there have been prior questions regarding database modeling programs, but in particular I'm looking for online ones. Can anyone recommend any?
And FYI, I will be using PostgreSQL but any ...
1
vote
3answers
526 views
Modeling a database (ERD) that has quirky behavior
One of the databases that I'm working on has some quirky behavior that I want to account for in the entity-relationship diagram.
One of the behaviors is that there is a 'booking' table and a ...
1
vote
1answer
485 views
Single Table Inheritance (Database Inheritance design options) pros and cons and in which case it used?
I study about today about 2 database design inheritance approaches:
1. Single Table Inheritance
2. Class Table Inheritance
In my student opinion Single Table Inheritance make database more smaller ...
1
vote
2answers
423 views
PostgreSQL 8.3 data types: xml vs varchar
There's xml data type in Postgres, I never used it before so I'd like to hear opinions. Downsides and upsides vs using regular varchar (or Text) column to store xml.
The text I'm going to store is ...
1
vote
3answers
255 views
How would you model this database relationship?
I'm modeling a database relationship in django, and I'd like to have other opinions. The relationship is kind of a two-to-many relationship. For example, a patient can have two physicians: an ...
0
votes
0answers
25 views
What are the techniques for modelling instance inheritance in a database?
Before asking my question, let me clarify what I mean by instance inheritance (and let me know if there is a term coined for this type of inheritance in the literature). When we talk about inheritance ...
0
votes
0answers
27 views
Entity's disjunction in Entity Framework
How can I do a disjunction in Entity Framework code-first?
Context:
Person { id_person[PK],.... }
Student { id_person[FK,PK],.... }
Teacher { id_person[FK,PK],....}
Entity Framework code-first ...
0
votes
0answers
45 views
Store yearly/annually versions of entities in relational database
We are building a system that needs to store yearly versions of some entities. Are there any patterns or best practices on how to design a relational database model with this in mind?
Right now we ...
0
votes
1answer
58 views
Best practice when setting up key, value table relationship
I have a couple of tables in my database A, B, C, D.
I need these tables to have a information key,value map linked to them.
Set it up like this in case there should be a table E which need a set of ...
0
votes
1answer
35 views
Database Meta tools
I'm now working with a legacy database which is missing, among almost everything you'd expect from a decent SQL relational DB, any documentation or metadata. I can't make changes to the DB schema, ...
0
votes
3answers
59 views
How can I properly implement commerce data relationships in a sql database?
First, I'd like to start out expressing that I am not trying to just have someone create my table schema for me. I have spent some time weighing the options between the two possibilities in my design ...
0
votes
2answers
85 views
Modeling a user-to-item database in MongoDB
I've got two tables.
Movies, which lists all the movies in the database.
Users, which has the users.
Usually, I'd create a join table to connect a user to a movie (as in, the user likes a certain ...
0
votes
1answer
21 views
Support Staging on SQL
I am designing a database and I wish it could support more than one version
in another words, if I have an object - info, it can have one value on one version and another value on another version.
I ...