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
1answer
153 views

Modelisation of a star schema DB for a pentaho project (mysql workbench or schema workbench)?

I'm working on a BI project where I'm gonna use pentaho. I'm currently deisgning the DB. I know that in pentaho I need schema workbench to create my cubes and "universe" for the final users. Can I ...
0
votes
1answer
56 views

Data model advice for Mongo collection that contains complex objects

we store apple app data in a database (http://www.apple.com/itunes/affiliates/resources/documentation/itunes-enterprise-partner-feed.html). we want to optimize for one type of query: find all apps ...
8
votes
3answers
305 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 ...
0
votes
1answer
356 views

TypeError: bad operand type for unary -: 'DateTimeProperty'

I am using Google App Engine with python 2.7 and try to reproduce the example given at https://github.com/GoogleCloudPlatform/appengine-paging-python/blob/master/suggest_cursor.py to use paging with ...
0
votes
0answers
95 views

Unable to connect to sql developer data modeler while connecting to DB2 database

I am trying to connect to the DB2 LUW database using sql developer data modeler. I have also added the required JDBC drivers to connect to the database. I am able to connect to the database. But when ...
0
votes
0answers
29 views

what is the assocation name in this ERM diagram [closed]

what is the name of name of assocation between property and measurment and Trait tables in this pic Trait is a descriptive property like color; measurement is a numeric property, like height. so ...
0
votes
1answer
126 views

Oracle Table structure

I have a table in Oracle Database which has 60 columns. Following is the table structure. ID NAME TIMESTAMP PROERTY1 ...... PROPERTY60 This table will have many rows. the size of the table will ...
0
votes
2answers
64 views

What dw model is appropriate when there's no measure?

All the demos out there use a sales/order model as a measure in their examples. But my db is not transactional. It's a customer-centric model where there is one table for the customer which is joined ...
1
vote
1answer
85 views

Modeling Complex Relationships in Django

Okay, here's a challenge, Djangonistas! My let's say my project has 3 types of data. Project Audio Video Projects can have references to an unlimited number of Video and Audio objects, as well as ...
1
vote
1answer
40 views

Build a model with 2 Foriegn Keys to the Same Table

Lets say I have a User model and now I want to add a Friend model. I want to name my FK fields RequestorID and ResponderID. What data annotations or fluent api mappings do I need to accomplish this ...
0
votes
1answer
275 views

Visio - IDEF1X Data Modeling - How to set Alternate Keys

Can anyone help me in defining Alternate Keys in Visio 2010 for IDEF1X?
0
votes
1answer
35 views

Are there any known Java class packages for representing a corporation?

Curious if there are any pre-built, well-known/standard, data models for representing a large corporation in Java. Something that shows a hierarchy as well as "dotted-line" type relationships along ...
5
votes
3answers
80 views

What is wrong with this data structure?

I have been asked to describe what it wrong with this data structure, and how I would improve it. Here is the data structure: Here is what I have so far: The Car price is set only if the car is ...
1
vote
2answers
63 views

Casandra datamodel

I try to build a backend for quiz game statistics : I want to know recognition percent for each image globally and recognition percent of images by country. Currently datamodel is : TABLE results ...
0
votes
1answer
38 views

How to model linked accounts like this in MongoDb?

My application has both facebook and twitter users. Now users can merge two accounts together which means they can login with either facebook or twitter account. Right now, I have a model like this. ...
0
votes
2answers
73 views

About SQL and complexity

I've created a SQL table with a field X and a field DATE. I would like to compute the sum of X where DATE < d. I've two possibilities : Create a new field, "sum of X", which represents the sum of ...
0
votes
2answers
74 views

mongodb: How to model a pie (the whole to a small collection of parts)

The Problem I need to model a document which is defined as the "whole" to a small, fixed collection of "parts", where both the whole and its parts are queryable. A sliced pie is a good example of ...
0
votes
1answer
260 views

PHPStorm not showing relationships of Symfony2 Doctrine Entities

I'm using PHPStorm 5 and Symfony2 Doctrine2 Entities. I'm using annotations to specify relationships. When I try to generate a diagram of all my bundles and entities it just shows a diagram of all ...
0
votes
0answers
106 views

Oracle Data Modeler: How to create view my_view start with id = 0 connect by prior id = p_id

I have a table hierarhy as follows: CREATE TABLE accounts ( id NUMBER NOT NULL , p_id NUMBER , acc_num NUMBER ) I can create view as follows: CREATE VIEW my_view AS SELECT ...
0
votes
1answer
117 views

the way mongodb optimized for aggregation and querying

I'm using MongoDB in my project for statistical and data analysis things. My goal is design data to have best performance and scaleability. Let's assume I have several shops and a list of unique ...
2
votes
1answer
99 views

how to model a singleton object to table through hibernate?

I have a global config object in my project and there can ever be 0 or 1 instance of this class that i want to persist in db. What is the best way to do this ? One trick i know here is to have a ...
0
votes
0answers
35 views

IBM Infosphere Data Architect or Data Modeler, possible to diff two logical- or physical models, or DDL:s?

We have one production SVN branch with our IBM DB2 physical and logical models, as well as their corresponding generated DDL scripts. This schema is in production. We then have another SVN branch ...
0
votes
0answers
94 views

How to design many to many complex relationships

I am designing a mysql database but I do not know exactly how to express some concepts. Basically, the key facts are: Each license_owner may allow different roles; Each corrispondence between role ...
0
votes
1answer
46 views

Data model for User Notifications of many Types

I am trying to figure out how to model notifications. This is what I tried. public class NotificationType { public int NotificationTypeID { get; set; } public string Type { get; set; } ...
0
votes
1answer
323 views

Sequelize.js join table twice using hasMany

I am using Sequelize.js to do a double join on the same table. I have a set of Team objects and a set of Game objects. A team hasMany Games, so it would have foreign keys in the game table, but there ...
0
votes
1answer
34 views

.NET and/or Web Service-accessible Object Manager with Security

I currently use Microsoft CRM for a lot of development but am questioning if there is a better toolset for certain applications. One of the strengths with MS CRM is being able to create objects, ...
0
votes
1answer
33 views

How to do advanced list modelling and matching in MongoDB

I'm building a university course search application and my data contains a pre-requisites field I need to match. It looks like this: "Any English, Chemistry, Methods or Specialist Maths" If I was ...
0
votes
0answers
126 views

Best practice for initialising NSJSONSerialization data

I am building a tab based app, which holds UITableViewControllers and takes a bunch of data using the NSJSONSerialization class. I was wondering which is the best way to design this. Is it ...
0
votes
1answer
42 views

How to Model Last Values for Missing Weekend Data

I'm trying to create a query that will carry data forward to null rows. This is a fairly simple query with analytic functions LAG and LEAD The query works when there is no partition by window and ...
3
votes
2answers
91 views

JSON: Better to use one object (key/val pairs), or two objects to separate data from model?

I haven't implemented too much JSON, so I'm curious if there is an advised approach to handling data. I'm guessing that there are two main approaches (perhaps they are invalid JSON), but I'd like see ...
-1
votes
3answers
58 views

Are there significant cons to deeply nested types in DB columns? [closed]

I'm trying to evaluate the pros and cons of structuring my data model in various ways, and I'd like to know if I'd be shooting myself in the foot by stuffing rather complex nested data types into ...
0
votes
2answers
56 views

SQL How to structure this particular db schema

I have two tables. User_types (1)individual (2)business (3)student Relationship_cat cat_id cat_name user_id user_type First with Relationship_cat, i want an entry to look like this ...
0
votes
1answer
76 views

data model for magazine store in rails application

I want to create a rails 3.2.7 application for online magazine store. I design quick data model for this application but I'm not sure it is good or bad!? I have Magazine table for all magazines, I ...
0
votes
1answer
98 views

Are these tables normalized? [closed]

Office: - office_id - office_name - city Employee - office_id - employee_id - username - password - department - designation - extension_no ConferenceHall ...
0
votes
1answer
43 views

Data modelling Appengine

Currently I have 3 datastore classes User Event Workshop Each workshop is referenced to an Event and each event only has four workshops In the user class I have a list property where I reference ...
1
vote
2answers
143 views

Can Erwin “guess” relationships during reverse engineering (there are no PK/FKs defined in db)

We are embarking upon a Legacy Data Migration project, and in the process of understanding our source database better, we are trying to build a db model out of it. We dont have any information about ...
1
vote
2answers
61 views

Java data modelling - Saving relational data to an interoperable format

I'm working on a J2SE desktop application with some POJO classes which represent data and one-to-many/many-to-many relations between them using ArrayLists. I'm not using an ORM, just managing the data ...
0
votes
0answers
59 views

SQL Developer Data Modeler 3.1 wheres the template?

I remember back on 3.0 there was a Tree Item with the Templates for default keys, indexes and columns generation . I deffinitly can't find them on 3.1. Where they are?!
0
votes
1answer
33 views

Clearing Mesh of Graph

If we do the information visualization of documents, the graph generation across multiple documents often forms a mesh. Now to get a clear picture it is easy to form them with minimum data load and ...
0
votes
0answers
170 views

Geo location based application database model

Hi I am building Geo location based application integrated with 4square and facebook. I need to store the data based on the location. Can you please suggest best way to solve this problem. I am ...
2
votes
2answers
160 views

problems arise when designing database for fashion online shop

I designed my database for customers, products, and orders... I came up with 5 tables: 1. customers customer_id email password first_name last_name registration_date 2. products product_id ...
0
votes
1answer
38 views

Is a has_many :through relationship the right way to model this data?

I have a Client model that needs each client instance to own and create multiple addresses, email_ids, phone_numbers. A simple has_many relationship would not allow me to scale I presume so I thought ...
0
votes
1answer
57 views

Rails Data Model Grouping Entities By Date

Developing a web application that will act similar to a daily journal. The user can maintain several different lists of data for a given date. For the sake of discussion say we have two models, ...
0
votes
1answer
88 views

What are the pros and cons of mixing data with metadata?

Let's say I have a table such as: CREATE TABLE t1 ( col1 int, col2 int ); and a "metadata table" classifying these attributes: CREATE TABLE t2 ( attribute varchar, description varchar ); ...
1
vote
2answers
224 views

Is encapsulation required for JavaScript objects?

I'm developing a node.js application. Looking for ways to create the datamodel. The data being sent to/from the client is JSON. Since database is MongoDb, the data to/from the db is JSON. I'm new to ...
-2
votes
3answers
114 views

Need advice on SQL philosophy

Before I go asking more questions about the coding, I'd like to first figure out the best method for me to follow for making my database. I'm running into a problem with how I should go about ...
1
vote
1answer
43 views

Is It Okay to Replace a Reference (“Type”) Entity FK with BOOLEAN Attributes That Represent Complete Set of Possible Values of That FK?

In attempting to optimize the physical data model by removing joins (denormalizing), I elected to take all of the possible values that a user might specify for CommEventPurposeType, implement them as ...
0
votes
2answers
170 views

Google App Engine GAE JPA ManyToMany relationship

I am trying to model my objects in a way that would work both with hibernate JPA and GAE JPA. I have a class Item that has a list of properties. I need to find all the items with specific properties. ...
0
votes
0answers
83 views

How do I create a visualization of a SQL Server database without db_owner privileges?

Database diagrams in SQL Server Management Studio looked promising, but I need db_owner privileges! I only want to temporarily see a diagram of a complicated with 5-10 tables. Any alternative ...
0
votes
1answer
67 views

ERwin Relationship Migrated Attributes

In erwin I have 2 tables as shown below. Table_A |ID|DATA| TABLE_B |A_ID|DATA| I created a relationship between table A and table B. Erwin adds ID to table B. In the logical view I can suppress ...

1 2 3 4 5 20