Tagged Questions

42
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 ...
39
votes
8answers
4k views

The Next-gen Databases

I'm learning traditional Relational Databases (with PostgreSQL) and doing some research I've come across some new types of databases. CouchDB, Drizzle, and Scalaris to name a few, what is going to be ...
20
votes
25answers
17k views

What is an example of a non-relational database? Where/how are they used?

I have been working with relational databases for sometime, but it only recently occurred to me that there must be other types of databases that are non-relational. What are some examples of ...
5
votes
21answers
2k views

non relational databases : need a recommendation

I have found relational database options, but I want to see if there are any faster non-relational databases that could do better. I am storing up to 32 GB of these records which contain 3 ints, a ...
4
votes
1answer
146 views

Non relational database for twisted

I'm looking for any key-value database implementation for working with twisted in asynchronous mode. The one Idea that I have is using the Twisted Memcache API with MemcacheDB. Is this some other ...
4
votes
5answers
2k views

Storing time-series data, relational or non?

I am creating a system which polls devices for data on varying metrics such as CPU utilisation, disk utilisation, temperature etc. at (probably) 5 minute intervals using SNMP. The ultimate goal is to ...
3
votes
1answer
83 views

What's needed to develop a database in the cloud?

What is needed (in general terms) to create a service like MongoHQ or SimpleDB? Thank you
3
votes
4answers
168 views

What exactly is the problem with hierarchal and network models of databases?

Before E F Codd published his paper "A Relational Model of Data for Large Shared Data Banks" in 1970, hierarchal and network were the two prominent models of the database. What exactly was wrong with ...
3
votes
3answers
2k views

What's a good pure-python, document-based and flat-file database engine?

for development i'd love to have a flat file database with the requirements up in the title, but I don't seem to be able to find a database with these requirements. I can't seem to get MetaKit to ...
2
votes
2answers
240 views

Why would I want to use a non-relational database?

The latest craze in databases seems to be centered around non-relational databases. Why? It seems kind of counterproductive. For example, it makes much more sense to me to express my data in a ...
2
votes
2answers
103 views

What is the best database for my needs?

I am currently using MS SQL Server 2008 but I'm not sure it it is the best system for this particular task. I have a single table like so: PK_ptA PK_ptB DateInserted LookupColA LookupColB ... ...
1
vote
2answers
56 views

Dynamic Database/Key - Value/Entity - Key Value Dillemma

I have been programming relational database for many years, but now have come across an unusual and tricky problem: I am building an application that needs to have very quick and easily defined ...
1
vote
4answers
384 views

Database Question: Change Simple Relational Tables to Non-Relational?

I have a web application running over a MySQL database (in development). I'm considering to migrate my application to Google App Engine, and would like to better understand how my simple relational ...
0
votes
0answers
32 views

What are the most mature and high performance options for attribute-value databases?

I am working in electronic health records domain, and the standard I'm using (http://www.openehr.org) creates a serious mismatch in many use cases if one attempts to use relational databases. I've ...
0
votes
0answers
37 views

Are databases with NULLS relational databases? [closed]

NULLS violate the Information principle, so would it be valid to say that a database with NULLS is not truly a relational database? So if someone makes a database in a RDBMS with nulls, can I tell ...
0
votes
2answers
116 views

Hierarchical, ordered, key-value store?

I'm looking for a database system which has the following capabilities: Hierarchical (multi-dimensional) keys An ordering of keys at each dimension So if my key is like App > User > Item I ...
0
votes
5answers
295 views

Which database(s) should I use?

I'm building an application that needs to query a lot of data that is written once and not changed anymore. Should I use MySQL for that or should I use something like SimpleDB or BigTable? (I need to ...
0
votes
2answers
5k views

Relational vs. Dimensional Databases, what's the difference?

I'm trying to learn about OLAP and data warehousing, and I'm confused about the difference between relational and dimensional modeling. Is dimensional modeling basically relational modeling, but ...
0
votes
3answers
264 views

How would you represent a relational entity as a single unit of retrievable data in BerkeleyDB?

BerkeleyDB is the database equivalent of a Ruby hashtable or a Python dictionary except that you can store multiple values for a single key. My question is: If you wanted to store a complex datatype ...