A relational database is a database consisting of relation variables (which are also called *relvars*, *R-tables* or just *tables*). The definition, manipulation and integrity rules of relational databases are based on relational operations equivalent to or similar to the Relational Algebra and Calculus. Relational database principles are the basis of a substantial part of data management theory and practice.

learn more… | top users | synonyms

106
votes
7answers
8k views

When and why are database joins expensive?

I'm doing some research into databases and I'm looking at some limitations of relational DBs. I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does the ...
39
votes
7answers
3k views

When shouldn't you use a relational database?

Apart from the google/bigtable scenario, when shouldn't you use a relational database? Why not, and what should you use? (did you learn 'the hard way'?)
35
votes
5answers
3k views

Use cases for NoSQL

NoSQL has been getting a lot of attention in our industry recently. I'm really interested in what peoples thoughts are on the best use-cases for its use over relational database storage. What should ...
25
votes
6answers
10k views

Pros/cons of document-based databases vs. relational databases

I've been trying to see if I can accomplish some requirements with a document based database, in this case CouchDB. Two generic requirements: CRUD of entities with some fields which have unique ...
18
votes
8answers
4k views

Is MongoDB a valid alternative to relational db + lucene?

On a new project I need a hard use of lucene for a searcher implementation. This searcher will be a very important (and big) piece of the project. Is valid or convenient replacing Relational Database ...
18
votes
5answers
28k views

How to create relationships in mySQL

In class, we are all 'studying' databases, and everyone is using Access. Bored with this, i am trying to do what the rest of the class is doing, but with raw SQL commands with mySQL instead of using ...
16
votes
7answers
1k views

Are document-oriented databases meant to replace relational databases?

Recently I've been working a little with MongoDB and I have to say I really like it. However it is a completely different type of database then I am used. I've noticed that it is most definitely ...
15
votes
7answers
563 views

Backupformat to transfer data between different Databases

As i couldnt get any satisfying answer to my Question it seems we have to write our own program for that, we are in the design phase and we are thinking which format shall we use to backup the data. ...
14
votes
7answers
331 views

What is the relational database equivalent of Factorial and the Fibonacci function?

When learning a new programming language there are always a couple of traditional problems that are good to get yourself moving. For example, Hello world and Fibonacci will show how to read input, ...
14
votes
9answers
2k views

Using a Single Row configuration table in SQL Server database. Bad idea?

In developing a shopping cart application I've found that I needed to save settings and configurations based on the administrator's preferences and requirements. This information can be anything from ...
13
votes
8answers
501 views

How do I help a person who wants relational database data in a CSV format?

The non-technical person who asks, "Can you just put the database in an Excel spreadsheet for me?" is so common it's almost a trope. (I could've sworn there was an xkcd about this, but I can't find ...
13
votes
9answers
554 views

What are the reasons *not* to use a GUID for a primary key?

Whenever I design a database I automatically start with an auto-generating GUID primary key for each of my tables (excepting look-up tables) I know I'll never lose sleep over duplicate keys, merging ...
10
votes
5answers
159 views

Best practices for migrating database content from one very poor structure to one very logical?

TL;DR what's the best way to migrate lots of data between one very poorly structured database (with much repetition of columns, no interrelations, and duplicate data), to another highly organised and ...
10
votes
3answers
444 views

Relational vs Non-Relational Data Modeling - what's the difference

I'm now to databases and I've never worked with any RDBMS. However I get the basic idea of relational databases. At least I think I do ;-) Let's say I have a user database with the following ...
10
votes
5answers
1k views

Relational table naming convention

I'm starting a new project and would like to get my table- and column names right from the start. For example I've always used plural in table names but recently learned singular is correct. So, if I ...
10
votes
4answers
701 views

What is the best way to store a tree structure in a relational DB? [closed]

There is the "put a FK to your parent" method, i.e. each records points to it's parent. Which is a hard for read actions but very easy to maintain. And then there is a "directory structure key" ...
9
votes
4answers
4k views

Still Confused About Identifying vs. Non-Identifying Relationships

So, I've been reading up on identifying vs. non-identifying relationships in my database design, and a number of the answers on SO seem contradicting to me. Here are the two questions I am looking ...
9
votes
8answers
2k views

What are the uses for Cross Join?

A cross join performs a cartesian product on the tuples of the two sets. SELECT * FROM Table1 CROSS JOIN Table2 Which circumstances render such an SQL operation particularly useful?
8
votes
2answers
309 views

Pizza & Food - database design

I want to create a website that allow customer to order food from the website. There are two food type: regular food/drink (eg: burger, donner kebab, chip, coke, pepsi etc) Pizza food (eg: ...
8
votes
4answers
499 views

Storing graphs in fully-normalized relational databases

Goal Find a perfect, flexible schema for storing many different types of objects with a wide variety of links between them in a relational database. Problem EAV is a workaround to the normal ...
8
votes
9answers
491 views

Does every table really need an auto-incrementing artificial primary key? [closed]

Almost every table in every database I've seen in my 7 years of development experience has an auto-incrementing primary key. Why is this? If I have a table of U.S. states where each state where each ...
8
votes
7answers
356 views

Are all modern RDBMS row oriented? Why? [closed]

If one of relational databases paradigms is to be tuple oriented we have the biggest limitation here. If one could design column oriented db, that would improve performance a lot. Vector operations ...
8
votes
3answers
307 views

Documenting relational databases (tables, views, functions, triggers)

I'm trying to improve the knowledge management of MySQL structures available on a project. By structure, I mean tables, views, functions, procedures, triggers. All these structures are extracted in ...
8
votes
6answers
194 views

Will this (normalised) database structure permit me to search by tags as I intend?

I am trying to set up a normalised MySQL database containing the three following tables. The first table contains a list of items which can be described by various tags. The third table contains the ...
8
votes
7answers
1k views

C# Importing Large Volume of Data from CSV to Database

What's the most efficient method to load large volumes of data from CSV (3 million + rows) to a database. The data needs to be formatted(e.g. name column needs to be split into first name and last ...
7
votes
4answers
191 views

Would relational databases scale as well (or better) than their NoSQL counterparts if we drop the relationships?

Disclaimer: This is a broad question, so it could be moved to a different source (if the admins find it appropriate). All the cool kids seem to be dropping relational databases in favor of their ...
7
votes
3answers
114 views

Where Result set is stored while working with jdbc and oracle driver

Once I use jdbc with oracle driver and run select query is the result of the query is stored in the server of oracle memory or file system or temp table ? and once I run the next method by getting ...
7
votes
2answers
204 views

When would it be worth it to maintain an inverse relationship in Doctrine2?

In the Doctrine manual, under Constrain relationships as much as possible, it gives the advice "Eliminate nonessential associations" and "avoid bidirectional associations if possible". I don't ...
7
votes
4answers
122 views

Implementing a Flexible Relationship in a RDBMS — What really are the tradeoffs?

I have a bunch of products with a bunch of different possible attributes for each product. E.g. Product A has a name, size, color, shape. Product B has a name, calories, sugar, etc. One way to solve ...
7
votes
2answers
3k views

How can I find MAX with relational algebra?

Working with databases, how can I find MAX using relational algebra?
7
votes
8answers
770 views

Web Development - Object db vs Relational db

Whats the cons and pros of using a object database or relational database for regular web development which involves a lot of CRUD? UPDATE: I reopened the bounty reward in order to give Neville it.
7
votes
10answers
492 views

Database Design: replace a boolean column with a timestamp column?

Earlier I have created tables this way: create table workflow ( id number primary key, name varchar2(100 char) not null, is_finished number(1) default 0 not null, date_finished date ...
7
votes
7answers
312 views

Is it bad to use redundant relationships?

Suppose I have the following tables in my database: Now all my queries depend on Company table. Is it a bad practice to give every other table a (redundant) relationships to the Company table to ...
7
votes
5answers
519 views

Why is it bad to use boolean flags in databases? And what should be used instead?

I've been reading through some of guides on database optimization and best practices and a lot of them suggest not using boolean flags at all in the DB schema (ex ...
7
votes
5answers
274 views

Database that consumes less disk space

I'm looking at solutions to store a massive quantity of information consuming the less possible disk space. The information structure is very simple and the queries will also be very simple. I've ...
7
votes
3answers
375 views

What aspect of relational databases makes it difficult for them to scale sufficiently on services like Google App Engine?

Apparently the reason for the BigTable architecture has to do with the difficulty scaling relational databases when you're dealing with the massive number of servers that Google has to deal with. ...
6
votes
1answer
100 views

My alernative to nested sets for arbitrary-depth hierarchical data sets: Good or Bad?

While recreating my CMS, I wanted an alternative to the traditional parent/child approach for managing the sitemap / page hierarchy. I had remembered seeing the nested set model a while back, but ...
6
votes
4answers
92 views

Switching the values of two fields/columns in SQL Server without third variable

As a result of a mistake during an import to the a test table called CUSTOMERS, I found myself needing to switch the values of two columns in SQL Server. I mistakenly imported the respective values ...
6
votes
4answers
90 views

How do databases implement SQL 'ORDER BY x'?

I'm wondering how these work under the hood, especially for large result sets. For example, would the DB likely write the raw result to disk and then do an external sort? I'm also wondering how this ...
6
votes
4answers
153 views

A Never Delete Relational DB Schema Design

I am considering designing a relational DB schema for a DB that never actually deletes anything (sets a deleted flag or something). 1) What metadata columns are typically used to accomodate such an ...
6
votes
2answers
981 views

Defining a 1:1 relationship within a relational database [closed]

Possible Duplicate: Defining a one-to-one relationship in SQL Server Based upon discussion in the comments to this question, it's been suggested that it is possible to define a true 1:1 ...
6
votes
3answers
329 views

Is storing graphs in MySQL a good idea?

I am using MySQL to store reports from a tool. I am extremely happy with the speed and flexibility with which users can query data. The tool also has some data which is a graph. My question is, is it ...
6
votes
5answers
672 views

Using a Relational Database for Schemaless Data - Best Practices

After reading a shocking article written by Bret Taylor (co-creator of FriendFeed; current CTO of Facebook), How FriendFeed uses MySQL to store schema-less data, I began to wonder if there are best ...
6
votes
3answers
939 views

Is MariaDB, a fork of MySQL, currently being used in any real-world projects?

I'm very curious ... Since MariaDB is designed by Ulf Michael "Monty" Widenius, the creator of MySQL. And from what I understand, MariaDB is a fork of MySQL. The MariaDB community states ...
6
votes
5answers
300 views

Referential Data Integrity: Necessity, nice-to-have, or old hat?

Frameworks like Rails have encouraged moving a lot of the logic, even stuff like constraints and foreign keys, off the database - in my opinion. for the better, as it's more manageable and easy to ...
6
votes
5answers
885 views

designing database to hold different metadata information

So I am trying to design a database that will allow me to connect one product with multiple categories. This part I have figured. But what I am not able to resolve is the issue of holding different ...
6
votes
6answers
176 views

Options for eliminating NULLable columns from a DB model (in order to avoid SQL's three-valued logic)?

Some while ago, I've been reading through the book SQL and Relational Theory by C. J. Date. The author is well-known for criticising SQL's three-valued logic (3VL).1) The author makes some strong ...
6
votes
2answers
293 views

Designing to easily migrate to Google App Engine

I am going to start designing a web app shortly, and while I have lots of experience doing it in the SQL world, I have no idea what I need to take into consideration for doing so with the goal of ...
6
votes
3answers
2k views

When to use a key-value data store vs. a more traditional relational DB?

When would one choose a key-value data store over a relational DB? What considerations go into deciding one or the other? When is mix of both the best route? Please provide examples if you can.
5
votes
4answers
63 views

Database design: 3 types of users, separate or one table?

I have 3 types of users: Admins Suppliers Employees Each user type will have different user interface and access different types of data. Their only similarity is they are using one web ...

1 2 3 4 5 19