Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
1k views

When is referential integrity not appropriate?

I understand the need to have referential integrity for limiting specific values on entry or possibly preventing them from removal upon a request of deletion. However, I am unclear as to a valid use ...
5
votes
4answers
152 views

In SQL / MySQL, are there reasons not to put one-to-one relationship in the same table?

One-to-one relationship could usually be stored in the same table. Are there reasons not to store them in the same table?
5
votes
5answers
330 views

Best schema design for table relationship that enforces integrity

Given a table of models 'A', that can have multiple child models 'B', of which 'B' will have one or more child models 'C'.. this sounds simple, however I need to enforce that for each 'A', any 'B' ...
4
votes
1answer
529 views

schema design for cassandra

I am working on a project of forum that allows a user to follow questions on certain topics from his network. A user's news-feed wall comprises of only those questions that have been posted by his ...
4
votes
1answer
47 views

Is there a prefered way to specify a text column in SQLite?

Since the SQLite engine will not truncate the data you store in a text column, is there any advantage in being specific with column sizes when you define your schema? Would anyone prefer this: CREATE ...
4
votes
5answers
617 views

What are the [dis]advantages of using a key/value table over nullable columns or separate tables?

I'm upgrading a payment management system I created a while ago. It currently has one table for each payment type it can accept. It is limited to only being able to pay for one thing, which this ...
4
votes
3answers
2k views

Is it possible to change the analyzer specified in the schema in Solr without reindexing from the original source?

In Solr, if we have a field in the schema with stored="true", and we change the analyzer associated with that field, is it possible to update just this field without reindexing all the documents? ...
4
votes
3answers
2k views

MongoDB Schema Design - Real-time Chat

I'm starting a project which I think will be particularly suited to MongoDB due to the speed and scalability it affords. The module I'm currently interested in is to do with real-time chat. If I was ...
4
votes
5answers
286 views

Oracle Schema Design: Seperate Schema with I/O Overhead?

We are designing database schema for a new system based on Oracle 11gR1. We have identified a main schema which would have close to 100 tables, these will be accessed from the front end Java ...
3
votes
2answers
72 views

How to model many-to-many relationships in MongoDB (for a MySQL user)

I come from a MySQL background and am trying to wrap my head around MongoDB. In particular, I'm struggling to conceptualize how I should model n:n relationships the "Mongo way." For this example, ...
3
votes
3answers
115 views

Mongo DB schema designing problem

I m designing a mongo db schema for a site like stackoverflow. There are questions and users. Users can add questions to their favorite list and they can search for a question within the favorite ...
3
votes
1answer
166 views

Maintaining Consistency Between JavaScript and C# Object Models

I'm working on an ASP.NET web application that uses a lot of JavaScript on the client side to allow the user to do things like drag-drop reordering of lists, looking up items to add to the list (like ...
2
votes
1answer
61 views

MongoDB Schema Design . can't get what i want

i think i have a problem with my schema design for my music app. i have 3 collections: Artists, Tracks and Albums. and 3 classes: artists, albums and tracks document from artists: [_id] ...
2
votes
1answer
87 views

Star schema modeling - many-to-many

I'm building a data warehouse based on NFL statistics for educational purposes as I learn this paradigm - I have the following modelling problem Players can play for different teams different years ...
2
votes
1answer
150 views

Table Design for Multiple Login Methods

I'm facing the normalization dilemma. Now that OpenID has been declared a failure, I would like to incorporate it into my web site. I'm also gonna throw in FB Connect while I'm at it. Clearly this ...
2
votes
4answers
216 views

PostgreSQL schema design

What is your preferred way of designing PostgreSQL schemata? Would you recommend the use of specific graphical design tools or just design the schema on paper and create everything by hand?
2
votes
1answer
167 views

Schema design: many to many plus additional one to many

I have this scenario and I'm not sure exactly how it should be modeled in the database. The objects I'm trying to model are: teams, players, the team-player membership, and a list of fees due for ...
2
votes
1answer
86 views

Suggestions on how to organize Core Data visual layout?

Core Data is pretty amazing, and I've really enjoyed using the visual layout Xcode provides for it to organize things and get a quick sample of what data I've placed where. At times I've started to ...
1
vote
1answer
42 views

Forum Model For MongoDB

So I am creating a model for a forum. Think thread and a bunch of comments where. Thread has many comments. In RDBMS world, I would design this as such Thread --has many--> Comment id ...
1
vote
0answers
29 views

designing schema for huge tables in oracle

I have a user table, transaction table and user_transaction table. the number of users is around 75,000 number of unique transactions possible in the application is about (rows in transaction table is ...
1
vote
2answers
80 views

Using multiple PostgreSQL schemas with Rails models

I have a PostgreSQL database for my Rails application. In the schema named 'public' the main Rails models tables are stored etc. I have created a 'discogs' schema which will have tables with names ...
1
vote
2answers
141 views

Mongodb map reduce across 2 collection

Let say we have user and post collection. In post collection, vote store the user name as a key. db.user.insert({name:'a', age:12}); db.user.insert({name:'b', age:12}); db.user.insert({name:'c', ...
1
vote
1answer
82 views

do you know any database design software supporting embedded documents (MongoDB)?

I am trying to design a database schema for MongoDB but would like to be able to intuitively represent embedded documents. A bit like this: Does anyone know some software that lets me do this? I ...
1
vote
2answers
135 views

How to represent one-to-one relationship in App Engine

Say you have a concept of "user" records that you'd like to store in the data store. class User (db.Model): first_name = db.StringProperty() last_name = db.StringProperty() created = ...
1
vote
1answer
336 views

Is HBase right for storing and querying log data?

I'm thinking of using HBase to store logs (web log data), each log would have about 20 different values (let's say columns), I want to run queries that filter results based on those columns. My ...
1
vote
1answer
123 views

XML Schema validation - intra-field validation

This is the scenario/problem I am trying to solve - Within a sequence of elements in my XSD I have an element- say XYZ which can be nillable if the one of the preceding element - say ABC - has a ...
1
vote
3answers
234 views

Database design - Multiple 1 to many relationships

What would be the best way to model 1 table with multiple 1 to many relatiionships. With the above schema if Report contains 1 row, Grant 2 rows and Donation 12. When I join the three together I ...
1
vote
1answer
202 views

MySQL database performance tuning, schema optimisation

I have a MySQL database with a pretty simple schema. There are parent, child and access tables. parent stores 51 fields that are all varchar (ranging in length from 16 to 512) except for for 4 ...
1
vote
1answer
320 views

Schema less SQL database table - practical compromise

This question is an attempt to find a practical solution for this question. I need a semi-schema less design for my SQL database. However, I can limit the flexibility to shoehorn it into the entire ...
1
vote
1answer
174 views

Monthly Reports in Django - Enforce uniqueness for month?

This is a fairly quick question regarding schema design for a Django project. Basically, we have a series of monthly reports from different departments that are aggregated into a single report with ...
1
vote
3answers
110 views

The Ruby community values simplicity…what's your argument for simplifying a db schema in a new project?

I'm working on a project with developers who have not worked with Ruby OR Rails before. They have created a schema that is too complicated, in my opinion. The schema has 117 tables, and obtaining ...
1
vote
3answers
290 views

Best way to design database tables with interbase?

I am about to start redoing a company database in a proper fashion. Our current database is a mess and has little to no documentation. I was wondering what people recommend to use when designing an ...
1
vote
1answer
1k views

XML element unique id Schema repersentation

My XML looks likes this : <company> <employee id="1">Larsen</employee> <employee id="2">Smith</employee> <employee id="3">Sam</employee> ...
1
vote
3answers
351 views

Database design one to many where many is at least one

Somewhat related to my previous question, this is regarding creation patterns to enforce table patterns where 'A' has many 'B' children where 'C' is the table of child 'B's for 'A', but has at least ...
0
votes
1answer
83 views

Returning custom fields in MongoDB

I have a mongoDB collection with an array field that represents the lists the user is member of. user { screen_name: string listed_in: ['list1', 'list2', 'list3', ...] //Could be more than ...
0
votes
3answers
97 views

What do people use for CN with inetOrgPerson in LDAP directories

I've been using givenName+" "+surname for the CN field and I woke up screaming last night 'what about John Smith'? I can imagine any large organization employing multiple people with the same name. So ...
0
votes
1answer
174 views

What is an efficient MongoDB schema design for a multilingual e-commerce site?

I'm designing a multilingual e-commerce site. Products have different properties. Some properties are different for each language (like color), other properties are the same for all languages (like ...
0
votes
1answer
105 views

Mongo DB collection fields schema best practice

I would like to know how does i have to set up my collections schemas? I mean first i need ,for example, a user object (username,email,password), then i need a field to make users confirm ...
0
votes
1answer
39 views

cakephp result management [closed]

i am a new to cakephp and i am trying to make a result management system of a school and i am already overwhelmed by the complexity of tables that has to be managed for this task...i have the ...
0
votes
1answer
279 views

Whats wrong with Mongo DBRef's?

Coming from a RDMBS background it's hard not to think of thinkgs like joins, especially when working with the schema-less MongoDB environemnt. I read on a blog that DBRefs were only useful when you ...
0
votes
1answer
90 views

How to design the schema for an author/user model in mongodb

I have looked through most of the mongodb schema design articles on mongo's website and most of the questions here on SO. There is still one use case which I haven't figured out. When looking at these ...
0
votes
2answers
75 views

Database user table design, for specific scenario

I know this question has been asked and answered many times, and I've spent a decent amount of time reading through the following questions: Database table structure for user settings How to handle ...
0
votes
1answer
162 views

Valueless Column Technique in Cassandra - Database Schema

I'm using Cassandra 0.8.2 I am attempting to use the "valueless column" technique to set up my cassandra schema. The idea behind the valueless column is the following: The name of your column becomes ...
0
votes
1answer
156 views

MongoDB schema design - reference vs embedding

I am writing a simulation which requires a backing database to store the results. The simulation writes a huge amount of data. For obvious performance reasons, I chose to try out a NoSQL database, ...
0
votes
2answers
46 views

XML Schema: Permit a tag only if another optional tag is provided

I'm trying to define an XML schema that has an optional tag, sort_expression. If that optional tag is provided, then a second optional tag, alternate_sort_expression is allowed, but it is conditional ...
0
votes
2answers
79 views

Storing flags in a SQL database and working with them in Symfony

I have a set of objects in a DB which can have a number of boolean flags associated with them. The flags will be pre-defined but may flags may be added or removed later. I could store them in a ...
0
votes
1answer
138 views

How do I index different sources in Solr?

How do I index text files, web sites and database in the same Solr schema? All 3 sources are a requirement and I'm trying to figure out how to do it. I did some examples and they're working fine as ...
0
votes
1answer
170 views

Need Cassandra schema

HI Just started to investifate Cassandra and have a bit confusion. Could you suggest schema for following: Schema: email, city, items1[], items2[] Input: cityId, item1, item2 I need: select ...
0
votes
5answers
95 views

Design DB structure

I want to create web site with tests. Test contains different questions. It could be textbox, checkbox or radiobutton. I want to store in db questions, answers and users. Here is my thought about ...
0
votes
1answer
107 views

Trying to convert MSWord 2007 document to an XML format

I'm hoping I can forgo the history, but trust me on the following: I have several people who have immediate access to MSWord 2007 We are trying to prep a generic Word document that can be passed ...

1 2