Tagged Questions
The relational tag has no wiki summary.
49
votes
19answers
8k views
What's the best practice for primary keys in tables?
When designing tables, I've developed a habit of having one column that is unique and that I make the primary key. This is achieved in three ways depending on requirements:
Identity integer column ...
41
votes
5answers
7k views
Why should I use document based database instead of relational database?
Why should I use document based database like CouchDB instead of using relational database.
Are there any typical kinds of applications or domains where the document based database is more suitable ...
30
votes
8answers
15k views
What is Normalisation (or Normalization)? Why is it important?
Why do database guys go on about normalisation?
What is it?
How does it help?
Is it even that important?
Does it apply to anything outside of databases?
15
votes
18answers
2k views
Should I delete or disable a row in a relational database?
In a brand new program where space isn't really that big a deal, is it better to delete a row or to disable a row by let's say a boolean "Disabled" and have the program just ignore it?
For example, ...
13
votes
3answers
952 views
Are there any examples of Functional Relational Programming in the wild?
I've just finished reading a very interesting paper entitied "Out of the Tar Pit" which presents this idea of FRP as a way of reducing complexity in applications by minimizing state and control. Are ...
11
votes
3answers
393 views
Database - Designing an “Events” Table
After reading the tips from this great Nettuts+ article I've come up with a table schema that would separate highly volatile data from other tables subjected to heavy reads and at the same time lower ...
10
votes
7answers
1k views
JPA tutorials
Let's say that I'm new to JPA, is there a way to get my skills up to speed? Are there any good tutorials?
10
votes
2answers
8k views
Tuples in Ruby
Does anyone use tuples in Ruby? If so, how may one implement a tuple? Ruby hashes are nice and work almost as well, but I'd really like to see something like the Tuple class in Python, where you can ...
9
votes
5answers
350 views
historically, what made relational databases popular?
EDIT I've just started skimming Codd's famous 1970 paper that started it all, that Oracle was based on (A Relational Model of Data for Large Shared Data Banks [pdf]), and was amazed to find that it ...
8
votes
9answers
741 views
What relational database innovations have there been in the last 10 years
The SQL implementation of relational databases has been around in their current form for something like 25 years (since System R and Ingres). Even the main (loosely adhered to) standard is ANSI-92 ...
8
votes
10answers
3k views
How do you document your database structure?
Many database systems don't allow comments or descriptions of tables and fields, so how do you go about documenting the purpose of a table/field apart from the obvious of having good naming ...
7
votes
4answers
222 views
(De)Normalization of two relations
People who read C.J.Date's Introduction to Database System or books of similar level should not have problems with definition of normalization and denormalization.
However, memory is not what it used ...
7
votes
2answers
17k views
Google's BigTable vs. A Relational Database [closed]
Duplicates
Why should I use document based database instead of relational database?
Pros/Cons of document based database vs relational database
I don't know much about Google's ...
7
votes
7answers
1k views
What are the pros and cons of object databases?
There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object database. My question ...
6
votes
2answers
841 views
Relational algebra - what is the proper way to represent a 'having' clause?
Yes, this is a homework question but the names have been changed to protect the innocent. Meaning, I am not asking the homework question itself, but rather a small part of it so I can understand the ...
5
votes
4answers
89 views
Designing a relational database and having a looming feeling of doom
I'm part of a four-man team at a growing company of over 200 users. It's time for a massive refactoring of our proprietary software, and we're very excited to build an ideal system that we know can ...
5
votes
1answer
69 views
Good Fast Way to Let Users Visualize and Explore Relational Data?
I'm looking for either a web-based or Windows-based way to point to a relational data source using automated schema exploration (or, even better, a reflection-based approach that would work on any ...
5
votes
3answers
456 views
Data Structure To Store Arbitrary Database Tables
I'd like to design a JVM data structure (Java/Scala) that can be used to represent and store the contents of arbitrary relational database tables. The data structure should be fast (not too ...
5
votes
2answers
768 views
5
votes
2answers
699 views
What are the best practices in building multi-tenancy applications?
What are the best practices in building applications that support multiple tenants such as Software as a Service?
Links to white papers that expand on this topic are greatly appreciated.
5
votes
8answers
671 views
How to Convince Programming Team to Let Go of Old Ways?
This is more of a business-oriented programming question that I can't seem to figure out how to resolve. I work with a team of programmers who have been working with BASIC for over 20 years. I was ...
5
votes
8answers
1k views
What is the best way to represent a many-to-many relationship between records in a single SQL table?
I have a SQL table like so:
Update: I'm changing the example table as the existing hierarchical nature of the original data (State, Cities, Schools) is overshadowing the fact that a simple ...
5
votes
9answers
2k views
Easy way to store and retrieve objects in Java without using a relational DB?
Do you know of an "easy" way to store and retrieve objects in Java without using a relational DB / ORM like Hibernate?
[Note that I am not considering serialization as-is for this purpose, as it ...
4
votes
0answers
78 views
Advanced search engine or server for relational database [closed]
In my current project we are storing big volume of data in relational database. One of the recent key requirements is to enrich application by adding some advanced search capabilities.
In the ...
4
votes
2answers
546 views
Terribly slow SQL query with COUNT and GROUP BY on two columns
I'm archiving this web forum, which normally gets purged about once a week. So I'm screen scraping it, and storing it into my database (PostgreSQL).
I also do a little analysis on the data, with some ...
4
votes
3answers
743 views
How do you store a trie in a relational database?
I have a prefix trie. What is the recommended schema for representing this structure in a relational database? I need substring matching to remain efficient.
4
votes
2answers
886 views
Efficient persistent data structures for relational database
I'm looking for material on persistent data structures that can be used to implement a relational model.
Persistence in the meaning of immutable data structures.
Anyone know of some good resources, ...
4
votes
7answers
381 views
Relational camp and “real-world” database development
More than decade passed since first publication of Date's and Darwen's "The Third Manifesto" in 1995.
What is the place of relational school of thought in today's database world?
Is there any ...
3
votes
6answers
265 views
Relational DB in-memory?
I have a simpleton question on Redis. If the key to it's performance is that it's in-memory, whey can't that be done on a regular SQL db?
3
votes
3answers
633 views
Can someone describe the nested set model from a C#/LINQ perspective?
I know the nested set model doesn't pertain to the C# language or LINQ directly... it's what I'm using to develop my web app.
For hierarchical data (categories with sub-categories in my case), I'm ...
3
votes
5answers
150 views
Insert 2 rows that are related in both directions in SQL
I have two tables kinda like this:
// Person.Details Table:
PersonID int [PK] | EmployeeCreatorID int [FK] | FirstName varchar | OtherInfo...
// Employee.Details Table:
EmployeeID int [PK] | ...
3
votes
3answers
490 views
SQL selecting rows where one column's value is common across another criteria column
I have a cross reference table that looks like this:
id document_id subject_id
1 8 21
2 5 17
3 5 76
4 7 88
5 9 17
6 9 ...
3
votes
1answer
84 views
RDBMS data-relation burden
Our in-house system is built on SQL Server 2008 with a 40-table 6NF schema. Most of the tables FK to 3 others, a key few as many as 7. The system will ultimately support 100s of employees working ...
3
votes
2answers
330 views
Is this a textbook design pattern, or did I invent something new?
I'm fresh out of designing a set of tables, in which I came up with an architecture that I was very pleased with! I've never seen it anywhere else before, so I'd love to know if I've just reinvented ...
3
votes
2answers
122 views
Retrieve maximal / minimal record
A rather complicated SQL query I was working on got me thinking about a limitation of (ANSI) SQL:
Is there a way to retrieve a record that is maximal or minimal with respect to an arbitrary ordering?
...
3
votes
2answers
814 views
Achieving Fast Lookups for a Large Dataset: MySQL MEMORY(HEAP), Memcached, or something else
Currently working on a project that is centered around a medical nomenclature known as SNOMED. At the heart of snomed is are three relational datasets that are 350,000, 1.1 mil, and 1.3 mil records in ...
3
votes
4answers
1k views
Storing folder hierarchy in relational database
I have objects representing folders and I'm wondering if they should be represented in the database.
On the one hand it seems like the easiest way would be to not represent folder objects and just ...
3
votes
6answers
300 views
Get Common Rows Within The Same Table
I've had a bit of a search, but didn't find anything quite like what I'm trying to achieve.
Basically, I'm trying to find a similarity between two users' voting habits.
I have a table storing each ...
3
votes
2answers
896 views
2
votes
2answers
121 views
Superkey, candidate key & primary key
can any kind soul clarify my doubts with a sample example below for the superkey, candidate key and primary key.
I know there are alot of posts and websites out there explaining what's the ...
2
votes
1answer
104 views
What are recent advances in relational databases? [closed]
I'm wondering what are recent advances in relational database theory and related domains? I'm interested in new approaches, query languages (alternatives to SQL and/or extensions to it), products ...
2
votes
2answers
166 views
Using NoSQL and Relational data stores for high volume web site
We are building a large scale e-comm web site to service over 100,000 users, but we expect the number of users to grow rapidly over the first year. In general, the site functions very much like ebay ...
2
votes
3answers
1k views
HTML 5 / Javascript flowchart tools / prezi style?
Does anyone know if there is sort of an open-source Prezi tool that works with HTML5 / javascript? I'm looking for a way to set up a flow-chart diagram and then have the browser window focus on ...
2
votes
4answers
249 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
1answer
48 views
index 'enabled' fields good idea?
Content of a website is stored in a MySQL database. 99% of the content will be enabled, but some (users, posts etc.) will be disabled. Most of the queries end as WHERE (...) AND enabled
Is it a good ...
2
votes
2answers
366 views
Moving webshop storage to NoSQL solution
If you had a webshop solution based on SQL Server relational DB what would be the reasons, if any, to move to NoSQL storage ? Does it even make sense to migrate datastores that rely on relations ...
2
votes
3answers
417 views
How can I copy a SQL record which has related records in other tables to the same database?
I created a function in C# which allows me to copy a record and its related children to a new record and new related children in the same database. (This is for an application that allows the use of ...
2
votes
3answers
191 views
mysql query normal relationship table vs concatenated realtionship table
I have a question about relationships between two tables.
Let's say we have a table users, and links.
users
+++++++++
id name
1 name1
2 name2
3 name3
+++++++++
links
+++++++++
id link
1 ...
2
votes
1answer
197 views
Design question for highly extensible project - Bearing in mind best practises
Development environment is C# 3.5 with a SQL Server 2008 database and Entity Framework.
Imagine you have a class and a table called Sign which represents a physical electronic sign created by a third ...
2
votes
2answers
57 views
What will be the best way to keep track of modified tuples in a database?
I am currently working on a project in which I have to keep track of the tuples that are modified in a relational database. This should include updated tuples, but also inserted and deleted tuples. My ...