Tagged Questions

5
votes
1answer
475 views

recursive query for adjacency list to preorder tree traversal in SQL?

I am migrating data from one database schema to another. The old schema has a categorization system based on an adjacency list, with id, category, and parent_id. If one category is under a second, ...
2
votes
9answers
271 views

How to best implement a 1:1 relationship in a RDBMS?

Yesterday while working on a project I came up on a peculiar 1:1 relationship which left me wondering - how to best implement this (clearly, we had done it wrong :D) The idea is that there are two ...
1
vote
0answers
24 views

db structure for awards festival?

I have a database for an annual festival with an awards contest. For each year, there are a number of entries. So I have a table for FestivalYears, with each year, and Entries, with an id and its ...
1
vote
1answer
222 views

Key-value pairs for metadata/tagging in RDBMS: efficient storage

I know that key-value pairs aren't good database design, aren't normalized etc however in this case I believe they are the most appropriate solution. My excuse for this, and some background: A large ...
1
vote
2answers
259 views

nosql example, which engine?

a) I have 1000000 domain names b) Every domain has about 100000 sites c) each site has about 10000 visits daily / (5000 unique visits daily) d) As the owner of all those websites, I want to see, ...
1
vote
3answers
732 views

SQL design for survey with answers of different data types

I am working on an online survey. Most questions have a scale of 1-5 for an answer. If we need to add a question to the survey, I use a simple web form, which does an INSERT into the appropriate ...
0
votes
0answers
96 views

Indexing “low-cardinality” column for ORDER BY…LIMIT to obtain work portion?

My question is a bit similar to this already-asked question about indexing a boolean column. I'm building a database of my photographs, and I want to both add keywords, comments, and scoring to them, ...
0
votes
2answers
47 views

Do database engines other than SQL Server behave this way?

I have a stored procedure that goes something like this (pseudo code) storedprocedure param1, param2, param3, param4 begin if (param4 = 'Y') begin select * from ...
0
votes
6answers
445 views

'questions' and 'answers' with multiple answers

This question is related to this post: http://stackoverflow.com/questions/1764469/sql-design-for-survey-with-answers-of-different-data-types I have a survey app where most questions have a set of ...
-1
votes
5answers
131 views

What resources will help me understand the fundamentals of Relational Database Design

This are few of the fundamental database questions which has always given me trouble. I have tried using google and wiki but I somehow I miss out on understanding the functionality rather than ...