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

0
votes
0answers
45 views

Query to get rows whose status changed for first time

I have a table which stores list of Customer Details like below.I want the customers name whose status got changed for first time CREATE TABLE Customers(Row_Id INT NOT NULL PRIMARY KEY ...
0
votes
0answers
86 views

Add cardinality rules to an ERwin Logical Model

Is it possible to add cardinality rules to an ERwin logical model? The UI for doing this seems to be locked when the model is logical, as opposed to when the model is a logical and physical model. If ...
0
votes
1answer
158 views

Python Parent Child Relationships in Google App Engine Datastore

I am trying to model a parent hierarchy relationship in Google App Engine using Python. For example, I would like to model fruit. So the root would be fruit, then a child of fruit would be ...
2
votes
3answers
480 views

Surrogate key for date dimension?

There are 2 schools of thought: Use a surrogate key, preferably in the format: YYYYMMDD as this will always be sequential. Eliminate the Date dimension surrogate key and use actual date instead. ...
0
votes
1answer
61 views

Data Modeling for Ordering A “Package of Packages” filled with Items

Imagine an ecommerce platform that works as follows: A Package, consists of a mixture of Items and other Packages. An Order consists of a mixture of Items and Packages. A user can select some ...
1
vote
2answers
126 views

How to manage key-value pairs storage when the value can be of several different types?

Let's say I've got n properties (pairs key-value) that are either dates, numbers or strings. Which data model is the most efficient to store them? Here is a solution I thought about: Each row of ...
1
vote
1answer
119 views

Designing a user authenication (Roles & Rights) module

I am trying to model a User Authentication module for a MS SQL Server database that will be the back end to a Delphi UI Application. Basically, I want to have user accounts where the user belongs to ...
0
votes
1answer
1k views

Top-down vs. Bottom-up database design: Real world examples

Ok, I can find hundreds of references on the internet of the difference between top-down database design vs bottom up database design approaches, however, I can't seeem to find any real world ...
0
votes
3answers
62 views

Designing a database without knowing the details of the data? [closed]

Are there cases where database designers are not allowed to know the details of the data? I am looking for real-world examples to learn from — please.
1
vote
1answer
33 views

Realizing Three States By Storing Values in Single Column In DB Table

I Have List of Products Displayed in Web Page. Each product is identified by unique product id in database. Initially when the page loads its would be shown as Both tick and Cross under every ...
0
votes
1answer
63 views

Passing QSqlQueryModel through control class

How would I go about passing QSqlQueryModel from a class that connects and queries the database through the control class or QMainWindow in my attempt and back to the widget needing the information? ...
0
votes
2answers
227 views

foreign keys not created in many to many case rails3 - create “key” instead “foreign key”

I want create foreign keys, but i fails to create them (foreign keys for teacher_id, course_id) . Please see the code - what should i change to produce foreign keys? The case app = school Steps: ...
7
votes
2answers
550 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 ...
0
votes
2answers
143 views

Postgres FTS with array of composite types

Say I have the following psuedo-schema, where the 1-many relation is modeled using Postgres arrays : CREATE TYPE quotes AS ( text CHARACTER VARYING, is_direct CHARACTER VARYING ); CREATE TABLE ...
0
votes
1answer
83 views

mysql: How can I avoid saving the same data twice?

I made a voting system and recorded votes in vote table as a row like this: post_id | user_id | votes | date Then, I add this vote to user-meta table which has a structure like this: user_id | ...
0
votes
1answer
289 views

Overwrite in datastore using python for GAE - Guestbook Example

I want to do something very similar to the Guestbook example GAE provides in Python. But instead allowing one user to sign multiple times, I want each submission to overwrite any preexisting one by ...
2
votes
1answer
77 views

Relational Mapping of finite tree with instances

I have to represent the following structure in a relational database. There are five hierarchy levels: A, B, C, D. The relation between the hierarchy levels is always one to many, so A has many B, but ...
0
votes
2answers
99 views

Grails Data Modelling dilemma

I'm hoping someone can help me decide the best way to model this design for what sounds like should be a simple use case. I have a Client domain class. I have a Person command object and a Firm ...
0
votes
1answer
111 views

Data Model for addresses with varying number of address lines

My question: How would I implement a database design on the back-end and the front-end to accommodate a varying number of address lines such as AddressLine1, AddressLine2, AddressLine3, etc. into ...
0
votes
1answer
49 views

Which is the best way to have 35 odd columns in a database table?

I have a requirement that I need to have 35 days data needs to be stored in a db table. The data is used only for calculation and not for any retrieval (not used in select query where clause). Is ...
0
votes
1answer
138 views

Parent and child entities in one to one relationships

The entity which participates in the 1:0+ relationship is the parent entity. Is that correct? Update:
3
votes
3answers
379 views

Snowflake schema: fact table with foreign key to a sub dimension?

Using the snowflake schema image from wikipedia: http://en.wikipedia.org/wiki/File:Snowflake-schema-example.png Would it ever make sense to have a "Brand_Id" foreign key in Fact_Sales as you do in ...
0
votes
0answers
27 views

How to Find the Timeliness words?

Now I have many search engine keywords (user searched before), and I have the search counts statistics of the each words, How to find the timeliness words? eg: rain(happens in some day),big news(user ...
1
vote
5answers
167 views

Need database design advise

I have a Questions table which looks like that as you see, there are 2 id rows that are nearly same: id, question_id. id - is autoincremented, unique id of each question, and question_id - is, ...
0
votes
2answers
49 views

Database Structure Query

I am in the process of developing a database with the following headings: Region , City , Suburb Each heading will have around 4000 rows so I am guessing it would be better if I use a separate table ...
0
votes
0answers
96 views

How to store graph data

I have the following data model: u* we already have, but m* are coming in large amount (fields: id, green, red, value - green and red indicate the id of connected u* like at the picture). Requests ...
0
votes
3answers
76 views

Programming Logic in Storing Multiple table ids in one table

I have Five Tables as Below 1.tblFruits 2.tblGroceries 3.tblVegetables 4.tblPlants 5.tblDescriptions All the tables except 5th one tblDescriptions will have ids as one column and as primary key ...
0
votes
0answers
164 views

Is there any MS Visual Studio class diagram equivalent for C++/Java on Linux?

I was use MS Visual Studio class diagram to generate C# code, and I'm wondering if there is any simple tool like it on Linux for C++/Java (or both). The tool just need (and better) have some basic ...
1
vote
0answers
119 views

Model/Specification describing a key-value database

I am looking for a formal/semi-formal way to describe the model of a database using a key-value approach (e.g. Redis). I guess it all comes down to describing the naming scheme (what to expect for ...
1
vote
1answer
313 views

Rails 3.2 Event Logging

I have a rails application with an administration interface that allows a user CRUD operations on certain models. The client wants a way to log what user does what to each model. For example, A ...
0
votes
2answers
75 views

What are some solutions for altering a table's column for storing multiple values?

We have a table: message ( `id` INT(11) NOT NULL AUTO_INCREMENT, `subject` VARCHAR(255) NOT NULL DEFAULT '', `message` TEXT NOT NULL, `attachment` VARCHAR(255) NULL DEFAULT NULL, `new` TINYINT(4) NOT ...
1
vote
1answer
231 views

How to model Cassandra's super column family using Riak?

We are investigating on choosing a nosql database for our web service. We have tried Cassandra and successful model our original MySQL data using Cassandra column family and super column family. It's ...
2
votes
2answers
131 views

Tournament management application - how to manage players and teams?

I'm writing an archery tournament management application. This application will be run on judge's laptop with no internet connection. It is made to easily manage players, teams and their scores and ...
0
votes
1answer
111 views

Is it possible to create a many to many relations ship on the same object in Salesforce

Our customers have inter relations between them as: suppliers-buyers meaning: we sell to both suppliers and buyers in the industry we work in. I am trying to store that relation ship of our customers ...
0
votes
0answers
86 views

Free or affordable er-modeller supporting domains

I've been using Powerdesigner at one of my previous employers and I'm looking for a cheaper alternative thats actually usable. Now I have to create some ER models. I have to option to update our ...
6
votes
1answer
89 views

Is there any way or any framework in python to create an object model from a xml?

for example my xml file contains : <layout name="layout1"> <grid> <row> <cell colSpan="1" name="cell1"/> </row> <row> ...
0
votes
0answers
42 views

Object modeling: how to link to various sub-types of classes?

I'm making a model for system that would deal with travel services. I have a class Service which holds the common things to all services offered. I also have classes for every kind of service: ...
6
votes
1answer
94 views

How should I model data accuracy/confidence in a database?

Say I have a database holding timestamps. For every timestamp attribute I might add an accuracy attribute, stating the confidence interval, so the information being stored might be, for example, "1st ...
0
votes
1answer
45 views

How to model a “checkin” style object in MongoDB?

I am making a new application in MongoDB, and I have found that the Document-oriented modeling style fits all of my models quite well. However, my one stumbling block is a "CheckIn" style action. ...
0
votes
1answer
56 views

Does there exist a library of relational data models that represent common file formats?

Say I want to store JPEG/JFIF images in a relational database. The raw JPEG data might go in a BLOB column, and the EXIF metadata might require a few tables to represent all the different ...
3
votes
1answer
295 views

how many rows in a column family in Cassandra can effect performance?

I work in a massive weblog processing project with apache Cassandra , but i wonder that if i have too many rows in a columnfamily . Will This make my query slower ?? in my data , we have about 100 ...
1
vote
1answer
188 views

Cassandra data model for linear spatial data

I am relatively new to cassandra and its data model. I have a large set of data that are described by locations on chromosomes (chromosome:start-end) where we have 24 chromosomes and start and end ...
1
vote
1answer
259 views

How to model process and status history in a data warehouse?

Let's say that we have D_PROCESS, D_WORKER and D_STATUS as dimensions, and the fact F_EVENT that links a process (what) with a worker (who's in charge) and the "current" status. The process status ...
1
vote
1answer
209 views

Data model design for a specialized chat application

I'm having difficulty designing an appropriate data model for my application. In my application I have pairs of participants who will complete several activities together. Each pairing will have 2-3 ...
0
votes
2answers
183 views

Data Model Standard for Health Insurance companies — akin to HL7

Quick question: is anyone aware of an off-the-shelf data model to support the health insurance business? I started reading about HL7, but this seems to pertain to hospital and providers operations, ...
3
votes
3answers
454 views

what is the difference between first normal form and second normal form?

Is it safe to say, when a 1NF table has no composite candidate keys (primary keys consisting of more than one column), the table is automatically in 2NF. Can a table voilate 2NF, when it has only one ...
1
vote
1answer
128 views

Report model data

I'm working on ssrs 2008 r2 and from it, I'm building a report model using a relational database as a source. I have many databases and all of them have the sames structure (same tables and same table ...
1
vote
0answers
35 views

To Share Data Directly or Make Copies

This is a very simple description of a complex system. The below stores and services have tons of relationships and millions of records of various types. Plus it is used by several applications. I ...
2
votes
3answers
1k views

MYSQL - One Column Referenced to Multiple Table

Can a single column in a table can be referenced to multiple tables?
0
votes
2answers
62 views

Datamodel for data storage, storing tables in one structure

Need to design database in 11g to store big amount of tables in one database structure. One assumption, columns of input tables can be only type of TEXT(String size more than 500) VARCHAR NUMBER ...

1 2 3 4 5 19