Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
9answers
589 views

How can I avoid NULLs in my database, while also representing missing data?

In SQL and Relational Theory (C.J. Date, 2009) chapter 4 advocates avoiding duplicate rows, and also to avoid NULL attributes in the data we store. While I have no troubles avoiding duplicate rows, I ...
8
votes
4answers
2k views

Data Modelling Advice for Blog Tagging system on Google App Engine

Am wondering if anyone might provide some conceptual advice on an efficient way to build a data model to accomplish the simple system described below. Am somewhat new to thinking in a non-relational ...
6
votes
2answers
108 views

How to model this[Networks, details in post] in database for efficiency and ease of use?

At linkedin, when you visit someones profile you can see how you are connected to them. I believe that linkedin shows upto 3rd level connections if not more, something like shabda -> Foo user, bar ...
5
votes
3answers
239 views

oracle (or any relational) data model question. Parent with fixed number of Childeren?

This is a particular problem that I have come across many times, but I have never really found a simple solution to this (seemingly) simple problem. How to you ensure that a given parent has a fixed ...
5
votes
4answers
3k views

Database design for a survey system

I'm working on a fairly simple survey system right now. The database schema is going to be simple: a Survey table, in a one-to-many relation with Question table, which is in a one-to-many relation ...
4
votes
1answer
211 views

Learning RoR and Mongo, why not count the array for votes

I'm completely new to Mongo and RoR, coming from a PHP background. I was just going through this tutorial about data modelling http://www.mongodb.org/display/DOCS/MongoDB+Data+Modeling+and+Rails and ...
4
votes
3answers
308 views

Best database design for a “sensor system”

I'm doing a schoolwork and.. I have to do a vehicle tracker system. I thought of these three designs. What do you think? My database schemas Opinions?
2
votes
4answers
248 views

Table Design For Multiple Different Products On One Order

If I were to have an online shopping website that sold apples and monitors and these were stored in different tables because the distinguishing property of apples is colour and that of monitors is ...
2
votes
2answers
348 views

interpolate a terrain surface from scattered data using heat equation

Hi This is my first question in this forum, so please bear with me and I hope I'm not violating any rules. I am looking at different ways to model scattered 3d data as a gridded function (over xy ...
1
vote
1answer
124 views

MongoDB Data Modelling

I'm a .NET developer developing on ASP.NET MVC, SQL Server 2008 and Entity Framework 4.1 using Model First Approach. I'm interested in switching to MongoDB as I think it suits my project better (the ...
1
vote
0answers
38 views

ER/Data modelling (Link between inherited types

Would it be possible (or is it illegal for any reason) to have something like this: This is basically an ISA class with a foreign-key relationship to itself. The idea is that an output message is ...
1
vote
1answer
38 views

Can Predictive modelling be applied to only one problem or multiple problems

I came across a company who does predcitive modelling and they say Because our Predictive Models are tuned to your unique business requirements and circumstances, they can be applied to a ...
1
vote
2answers
315 views

Mapping two tables to one entity in Doctrine2

I'm looking at using doctrine for an application I'm working on - but after reading the documentation I'm having trouble conceptualizing how to represent the database structure we have in terms of ...
1
vote
2answers
191 views

Matlab: Creating customized numeric data types

Please, does anyone know how create your own numeric data types in Matlab? I would like to do the numeric data type with six data parts one for sign, other for mantisa, for exponent, for number of ...
1
vote
1answer
78 views

Modelling time series in Core Data

I am looking at writing an application that handles time series data and want to shove to heavy lifting data work off into Core Data. My question is this - from a speed of retrieving and ease of ...
0
votes
1answer
53 views

Modelling nested XML elements in Django

I am working on importing XML data into Django models. For example, I could use the following XML: <family surname="Jones"> <person name="Bob" /> </family> to populate the ...
0
votes
1answer
92 views

TPH vs TPT vs TPC and OR mappers

I'm working on a datamodel that has a set of types that share some common fields such as Id, Name, Description. To be more concrete: The Document class has a list of Attributes. These Attributes are ...
0
votes
1answer
48 views

Modelling alternatives and performance when traversing a tree structure in Neo4J

I modelled a tree structure using the Neo4J graph database. All nodes represent a category with a characterising name. So I have to traverse my tree very often from the root to a specific node / ...
0
votes
0answers
50 views

Question about database modelling and fuzzy queries with hibernate search

I am trying to model what I call an "availability matrix". Let me explain what I mean. Users of my application are one of two types: employers and employees (an employee could be a Nanny for ...
0
votes
1answer
61 views

How to model many blobs for an object?

I want to enable something like a one-to-many relation between a text object and blobs so that a text object (an "article" or likewise) has many images and/or videos. There are two ways I see how to ...
0
votes
1answer
50 views

Dimensional modelling few questions

I am getting familiar with Dimensional model, so started looking at health claims process. I am trying to acheive the following: 1) ability to report claims by patient by speciality and service ...
0
votes
0answers
17 views

direct lookup in contained collection of an entity in ORM(hibernate)

Let us consider i have 2 classes A and B such that A -->(1..n) B . A "contains" B. In ORM terms i want A to be an entity and B might be an @Embeddable object. The list will be lazy-loaded. This ...
0
votes
2answers
56 views

Best way to model system with a single interface used in different ways in java

I have a class that implements an interface class TopLevel implements TopLevelOperations inside TopLevel the operations are implemented in 2 different ways. So some of the operations in ...
0
votes
1answer
107 views

Data model documentation tool

Any good tools for documenting each table, field, the list of values, field type, lengths etc? (Except word / excel)? Worse case is create html tables and save it as a html page but I dont now if ...
0
votes
1answer
27 views

ActiveRecord: peer models

What is the best way to relate models as peers? For example, consider the classic banking example class Transaction < AR::Base belongs_to :account # attribute: amount decimal end class ...
0
votes
1answer
105 views

Modeling system objects for lookup table

I am creating the object lookup table and not sure what exactly to call an object. This is a social network. I know items like photo, video, status etc are objects but what about account settings, ...
0
votes
2answers
208 views

Entity Relationship Diagramming

I'd like to improve my understanding of cardinality constraints in ER diagrams. I have two entities: User Location But, I want the relationship between these two entities to be many-to-many (a ...
0
votes
1answer
82 views

Keeping track of “prices” in a SQLite database?

My Schema looks like this: CREATE TABLE items ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, description TEXT NOT NULL, quantity INTEGER NOT NULL price TEXT ...
0
votes
2answers
211 views

Documenting a data model

What is the best way to document a logical or conceptual data model. Whilst tools like Visio allow you to define entities, attributes and relationships they do not support the collection of other ...