Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
5answers
6k 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 ...
11
votes
1answer
1k views

Difference between Document-based and Key/Value-based databases?

I know there are three different, popular types of non-sql databases. Key/Value: Redis, Tokyo Cabinet, Memcached ColumnFamily: Cassandra, HBase Document: MongoDB, CouchDB I have read long blogs ...
10
votes
3answers
443 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 ...
9
votes
1answer
2k views

Deploying and hosting scala in the cloud?

I am starting a web app considering scalability as one of the top priorities. What would be the benefits of this: cassandra scala lift vs the traditional LAMP on the cloud? Since from what I've read, ...
9
votes
1answer
2k views

How would a “NOSQL” database be designed for consumer apps (e.g. social bookmarking)

I've been reading up on a lot of posts about non-relational databases, the whole NOSQL movement, and there's a lot of fresh new activity around it. It seems like a very interesting approach to ...
8
votes
4answers
1k views

What are good NoSQL and non-relational database solutions for audit/logging database

What would be suitable database for following? I am especially interested about your experiences with non-relational NoSQL systems. Are they any good for this kind of usage, which system you have ...
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
2answers
488 views

SimpleDB to ActiveResource. Rails

Im looking for a way to map an ActiveResource to SimpleDB I want to avoid plugins/gems as all I have used are outdated/buggy/not mantained It doesnt seem hard, I wonder if any of you have ...
5
votes
4answers
1k views

What is the difference between a Relational and Non-Relational Database?

I know that solutions like MySQL, PostgreSQL and MS SQL Server are relational database systems, and NoSQL, MongoDB, etc. are Non-Relational DBMS. However, what are the differences between the two ...
5
votes
5answers
834 views

Non-relational databases (NoSQL) for small to medium sized applications

The benefits of a non-relational database (such as a key-value pair storage) are evident when used in large scale datasets (google, facebook, linkedin). How do you think small to medium sized ...
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
136 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
66 views

Is MongoDb suited for my application?

I'm building an application on node.js that has users and products in a many-to-many relationship (one user has many products and the same product might belong to multiple users). Each user has also ...
3
votes
2answers
693 views

filter on foreign key property in django-nonrel

What's the best practice for filtering based on a foreign key's property in a non-relational database? I understand that the lack of join support makes things more complicated, and so I was wondering ...
3
votes
1answer
82 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
163 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
302 views

Strategic issue: Mixing relational and non-relational db?

There has been a lot of talk about contra-revolutionary NoSQL databases like Cassandra, CouchDB, Hypertable, MongoDB, Project Voldemort, BigTable, and so many more. As far as I am concerned, the ...
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 ...
3
votes
3answers
775 views

SimpleDB as the main database, examples

Please, can you give examples of real-life implementations using SimpleDB as the main persistent storage?
3
votes
2answers
192 views

Is it easy to switch from relational to non-relational databases with Rails?

Good day, I have been using Rails/Mysql for the past while but I have been hearing about Cassandra, MongoDB, CouchDB and other document-store DB/Non-relational databases. I'm planning to explore them ...
3
votes
1answer
292 views

recommendation of a Non-relational database with Ruby on Rails?

I want to start playing with non-relational database, but want something that is popularly used with Rails. I'm considering the ones in the article and leaning towards Voldemort or CouchDB: ...
2
votes
2answers
217 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
1answer
149 views

App Engine Messaging System with Message Status - Design Pattern

I'm building a Threaded Messaging System that will be hosted on Google AppEngine I've modeled it after the technique described by Brett Slatkin in Building Scalable, Complex Apps on App Engine class ...
2
votes
1answer
136 views

In a non-relational DBMS (BigTable in AppEngine), how should I set up the entities for a mass messaging type-of system?

Imagine, for example that I have a lot of users. Every time a user messages something, he/she can message it to a list of other users (similar to mass-emailing). However, I just want to store the ...
2
votes
3answers
289 views

A Read-Only Relational Database on Google App Engine?

I have a medium size (~100mb) read-only database that I want to put on google app engine. I could put it into the datastore, but the datastore is kind of slow, has no relational features, and has ...
2
votes
2answers
191 views

(Non-Relational) DBMS Design Resource

As a personal project, I'm looking to build a rudimentary DBMS. I've read the relevant sections in Elmasri & Navathe (5ed), but could use a more focused text- something a bit more practical and ...
2
votes
2answers
102 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 ... ...
2
votes
3answers
1k views

representing a many-to-many relationship in couchDB

Let's say I'm writing a log analysis application. The main domain object would be a LogEntry. In addition. users of the application define a LogTopic which describes what log entries they are ...
2
votes
3answers
769 views

Complex Queries using GAE datastore

I am in the early stages of developing a sports statistics website (ultimate frisbee) and would like to know your opinions if Google App Engine is right for me. I am writing it in Python using Django ...
2
votes
4answers
253 views

Is there a non-relational equivalent of DBI in Perl?

The Perl DBI module lets me connect to many different types of SQL database transparently. Is there an equivalent Perl module for non-relational key-value pair databases? For example, an interface ...
2
votes
4answers
854 views

Alternative or succesor to GDBM

We a have a GDBM key-value database as the backend to a load-balanced web-facing application that is in implemented in C++. The data served by the application has grown very large, so our admins have ...
1
vote
2answers
48 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
1answer
29 views

Data model or database system to use for large data tracker with custom user tags and fields

I want to create an application that allows keeping track of items and associated fields. For example, I may want to keep track of how much coffee I have drank, and so I would create a coffee entry, ...
1
vote
1answer
80 views

“Pointers” in MongoDB?

In the project I am currently working on, it seems to make more sense efficiency wise if I create a nested document that contains a list of "pointers" to information stored in other collections. That ...
1
vote
1answer
100 views

How can I run queries like “within five days” on time series data?

I would like to have an easy way to run queries like the following query on my time series data: "What are the most typical events to take place within seven days of eachother"? I could do this by ...
1
vote
1answer
144 views

Resources for learning about NoSql/Non relational databases

Are there any good resources and/or sample applications(in C# preferably, but any will do) for learning more about designing applications around non-relational databases such as hadoop, cassandra, ...
1
vote
2answers
485 views

Databases non-ORM and Scala

What is the best non-ORM database to work with Scala? I find this link link text, but this does not answer my question fully. Could be considered desirable features performance, scalability and ...
1
vote
1answer
179 views

Google App Engine many-to-many to self

I'm trying to convert a django project for GAE, and I've stumbled upon this: (relational-databse) class Clan(models.Model): wars = models.ManyToManyField('self') How can I do this in a ...
1
vote
5answers
738 views

Storing Surveys in CouchDB vs. MySQL

I am looking into the best ways for storing surveys to a database with Rails. I have checked out this great Smerf Survey Plugin for Rails which stores surveys into a Relational Database with the ...
1
vote
4answers
382 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 ...
1
vote
8answers
1k views

portable non-relational database

I want to experiment/play around with non-relational databases, it'd be best if the solution was: portable, meaning it doesn't require an installation. ideally just copy-pasting the directory to ...
0
votes
1answer
52 views

yii relational database

I am just starting learning to use yii, and already managed to do some basic stuff with databases. However I am stuck regarding relational databases. Let's say I have two simple tables: users / ...
0
votes
0answers
27 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
32 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
1answer
75 views

Google App Engine and Django-nonrel: db migration

I just started "Hello World" app on GAE and Django-nonrel. I saw a couple of differences between using pure Django on relational databases and Django-nonrel. The most sadly is South migration system ...
0
votes
2answers
102 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
1answer
67 views

Converting Relational databases to flat and vice-versa

I'd like to write a script to convert from a relational database to a flat one and vice-versa. The database's rows mostly contain data from text input, but there are a few dropdown lists from the form ...

1 2