Tagged Questions
-1
votes
0answers
46 views
Best choice moving from RDBMS to NoSQL database [closed]
Probably a question many are asking as they consider NoSQL alternatives to their aging RDBMS based systems.
I am looking for the best NoSQL alternative to replace a series of relational databases ...
1
vote
1answer
65 views
How to best get around CouchDB's non-RDBMS limitations
We have two document 'types': Post and User:
Typical post:
{
"_id": "3847345345",
"Schema": "Post",
"Text": "Hello World! This is a post!",
"IsFeatured": true,
"UserID": ...
0
votes
0answers
35 views
In mongodb how should I structure data which has a slightly complex child/parent relationship
My data structure is something like this
parent
->prop1 : [ childType1, childType1]
->prop2 : [ childType2
-> prop : childType1.ObjectId // this is always a reference to ...
0
votes
0answers
43 views
Recommendations to choose a database system [closed]
I am asking for advice and recommendations to help me choose a database system.
I am writing a system with which psychologists can create psychological tests which are presented online. These tests ...
0
votes
3answers
169 views
High access expandable multimedia database
I would like to have some suggestion for choosing the right database for my system. I am dealing here with multimedia data (images, video, audio, motion, ...) and should be having a high number of ...
2
votes
4answers
173 views
What does a Graph Database solve that is difficult in a Relational Database?
I have a client who understands that his data model is a directed acyclic graph. We've been working with collections of nodes and an intermediate table of edges, and the performance has been pretty ...
1
vote
1answer
55 views
Modeling Privacy Settings in PHP/MySQL or PHP/NoSQL
I'm building a private social network with Yii that will have "comments" all over the site - in Profiles, Events pages, Group Threads, etc. When a user makes a post, they will be able to select the ...
0
votes
3answers
144 views
Why is it called NoSQL?
I've recently worked with MongoDB and learned about its schemaless design. However, I'm confused with the term NoSQL? Why is it called that? Doesn't it use SQL or SQL-like queries?
I've also read ...
2
votes
1answer
65 views
Database support for XPATH 2.0
I'm looking for an open source solution that can support xpath 2.0 expressions. I'm thinking this would be a relational database or possibly an indexing tool like lucene. It seems like postgres's ...
1
vote
3answers
116 views
Is the data relational or the database design? [closed]
I am a novice in the domain of databases and have stumped into this confusion. I am working on converting the database layer of an offline application from sqlite to IndexedDB.
Currently the database ...
0
votes
2answers
173 views
MapReduce in Relational database management system (RDBMS)
How come I've never heard of the term MapReduce when using relational database (RDBMS)? And now suddenly with NoSQL MapReduce is everywhere. I would just like to understand in general sense why ...
0
votes
1answer
85 views
Should I use NoSQL or Relational DB on an API
I'm building an API and I need to store some data, I'm using JSON as my response format instead of XML but I really dont know how to store my data, for example I have this
{users: [
user: "name",
...
0
votes
2answers
329 views
MySQL huge tables, performance improvement with migration to NoSQL?
We have few very big tables (3 tables, each 2 ~ 5 GB) in our MySQL DB. We are running logistic applications where we combine entities like route,schedule,capacity,location,price rules etc.. and those ...
1
vote
2answers
625 views
Alternatives to Redis Sets
So to set this up, I have a company in which we have users and a set of tags to describe these users.
Each user can have up to 5000 tags attached.
We have an engine that allows clients to pick ...
0
votes
1answer
100 views
Storing and quickly comparing luminosity histograms
I am interested in building a domain-specific image search application capable of searching for images similar to a given image. With a little google-fu I managed to find this question on this site. ...
0
votes
0answers
94 views
How to store graph data
I have the following data model:
u* we already have, but m* are coming in large amount (fields: id, green, red, value - green and red indicate the id of connected u* like at the picture).
Requests ...
3
votes
4answers
402 views
Graph and Relational Data Models
To me, relational data is a graph, where each table is a node, and each foreign key is an edge connecting the two nodes together.
So when I hear about things like Neo4j and "graph databases", it is ...
1
vote
1answer
130 views
Relational vs NoSql: Which database should I use for this kind of app? [closed]
I am about to build an application which does analytics on student results. Ghe data that needs to be stored looks like this:
Course: name
Semester: 1st,2nd etc
Student: name
Subject1: marks
...
0
votes
1answer
133 views
SQL or NoSQL for survey application tool [closed]
I am designing a survey tool which users can use to build their surveys or polls etc. So a basic survey tool needs to allow users to design a questions , upload files , login , register , share the ...
2
votes
0answers
116 views
Database for storing Ontology models/Flexible hierarchy structures
I am designing a system for a scientific collaboration website. Basically, there are many different data models for different research topics. The columns, field types, number of columns,mappings and ...
0
votes
1answer
120 views
AWS NoSQL or AWS RDS, what are the good ways to store social graph?
Recently I want to store some social graph information into our database, and user discovers new social nodes by an automatic "mapping" that happens on the server end which has the social graph.
...
1
vote
3answers
125 views
What database are better for store and search key/value pair data?
I need to build a app that your main purpose is to store and search key/value data. What type of database are for that purpose?
Or taking into consideration that all databases are for the purpose of ...
1
vote
0answers
93 views
How would one build a relational database on a key-value store, a-la Berkeley DB's SQL interface? [closed]
I've been checking out Berkeley DB and was impressed to find that it supported a SQL interface that is "nearly identical" to SQLite.
...
2
votes
1answer
84 views
Trying to move data stored in JSON strings in database into a more manageable structure/process. Are NOSQL approaches potentially a good fit here?
Folks,
I have been tasked with recforing a large system that comprises many javascript based worktools/workflows into something more manageable.
The first part of this is to refactor the data. All ...
1
vote
1answer
192 views
Database for replication or simple transferring data
I will try to describe my problem of choosing good technology.
I have many machines which stores data locally in database. And there is one client machine with its own database. What I need is to ...
0
votes
1answer
336 views
does mysql 5.5 supports NOSQL? [closed]
I m developing a application which requires to handle a heavy data.I am planing to use mysql 5.5. i have heard about NOSQL and mysql 5.5 also supports NOSQL.Does any one has idea that till how extend ...
4
votes
2answers
167 views
Can I write entire application using NOSQL ONLY? [closed]
I am planning an application that intends to store a LOT of user data. and i am quite concerned about the speed of data retrial.
I have heard a little about NOSQL and know that it provides better ...
1
vote
1answer
219 views
JSON data type for relational DATABASE
Can a relational database have JSON as a data-type? Or Does relational data need to have such a data type.
I know it makes more sense to store such data in NoSQL like MongoDB or Redis. But suppose if ...
3
votes
1answer
521 views
Merge RDBMS and NoSQL database
Ok, let's say I have a large MySql database with 100+ tables.
Although it runs very well I have two tables that can each exceed 100 million entries per year.
On these two tables I have to perform ...
5
votes
3answers
400 views
What's the best way to store/query multiple types within a RavenDB collection?
I am designing a logging system that will store its log entries in RavenDB, and for this particular system I want to store (and later query) documents that have varying data structures based on the ...
2
votes
0answers
723 views
Amazon DynamoDB - Scale and benefits, but is it a right fit
I've got an application that I've built that, if all goes well could generate a large amount of data. At present I'm using a MySQL database to store the information and I make use of INNER and LEFT ...
0
votes
2answers
181 views
Some advice on how to model this database
I am setting up a website that will have users. Users can search for songs and (if signed in) save them to a playlist or their library of songs.
I want it to be like iTunes in that all the songs on ...
3
votes
2answers
569 views
Relational to NoSQL Database
This question is for all NoSQL and specially mongoDB experts out there. I started by designing a relational DB for a project but client wants us to use a DB that can easily scale. To achieve this we ...
7
votes
4answers
582 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 ...
0
votes
2answers
99 views
Map/reduce on MongoDB grouping by an external key
I am in the process of choosing a database for a project and new to the NoSQL world. I am not sure if one of the query we will run could be done using NoSQL. I think that my mind is just not able to ...
2
votes
3answers
535 views
Why is multi-value field a bad idea in relational databases
Having been working with Mongodb and Solr/Lucene, I am starting to wonder why multi-value field for relational databases are (generally) considered an bad idea?
I am aware of the theoretical ...
2
votes
2answers
323 views
Multi Map / Reduce index vs. relational join
One of the key factors making NoSQL databases more scalable is absense of join operation which is essential part of RDBMS. But at the same time, for example, RavenDb contains Multi Maps / Reduce index ...
1
vote
1answer
234 views
RavenDb vs. RDBMS horizontal scaling
What are the factors which make RavenDb (as typical NoSQL document database) horizontal scaling capabilities much better in comparison to classical RDBMS?
5
votes
2answers
2k views
Why RavenDb performance is better in comparison to relational databases? [closed]
What are the factors which make RavenDb (as an example of NoSQL document database) more efficient in comparison to relational databases?
I know two factors:
All queries are executed on indexes. But ...
0
votes
3answers
282 views
Using NoSQL database for relational purpose
Non-relational databases are attracting more attention day by day. The main limitation is that today's complicated data are indeed connected. Isn't it convenient to connect databases as we connect ...
3
votes
1answer
403 views
Port From Entity Framework to MongoDB
I'm planing to port from entity framework 4.0 to MongoDb. What are the best practices that can minimize the impact since the project is having social networking functionality hence, maintain a ...
0
votes
1answer
119 views
What query makes a relational database go slow? [closed]
i'm making a research to explore the weak points of a RDBMS and i was thinking about what king of query or architecture makes a RDBM slow... if there exists some Schema that don't go very well with ...
2
votes
1answer
296 views
tags in database, relational or NoSQL
I have e following schema
PRODUCT(ID,Name,Description)
TAG(ID,Label)
Product will have about 1000000 records, Tag will have 100 records.
If I do it with relational database I'll make many-to-many ...
-1
votes
3answers
185 views
Would MongoDB be a good fit for my industry?
I work in the promotional products industry. We sell pretty much anything that you can print, embroider, engrave, or any other method to customize. Popular products are pens, mugs, shirts, caps, etc. ...
2
votes
5answers
802 views
Converting simple MySQL database to a NoSQL solution
I have a very small MySQL Database where the main table is about 300 records and I do add more occasionally. The table stores locations to files and some meta data for video assets that my users have ...
5
votes
2answers
1k views
Tracking User activity log - SQL vs NoSQL?
I have a mysql database containing tables like User, playlist, videos, tags.
Based on this I would like to collect the user activity on the application. the example use cases may be :
a.) ...
1
vote
2answers
192 views
Filter by user specific data but also using a searchengine like Solr
I'm using a relational DB for items, and index them with Solr for getting the fast full-text search that Solr provides. But in the same time, I need the user to be able to filter by item status, that ...
1
vote
1answer
928 views
Processing xml files with Hadoop
I'm new to Hadoop. I know very little about it.
My case is as follows:
I have a set of xml files (700GB+) with the same schema.
<article>
<title>some title</title>
...
28
votes
7answers
11k 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 ...
1
vote
3answers
2k views
Serializiation with Protocol Buffers in a Schemaless Database
We're using MySQL to store schemaless data (see: Using a Relational Database for Schemaless Data for the solution inspired by how FriendFeed uses MySQL to store schemaless data).
One big table holds ...

