The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
55 views

Partially schemaless Document overwrites schemaless values

I have a class in C#, something like: public class MyEntry { public ObjectId Id { get; set; } public string SimpleHash { get; set; } public string GroupIdentifier { get; set; } } now ...
3
votes
1answer
159 views

NoSQL database which combines reading speed and data integrity

Is there any NoSQL database or "ready to use solution" which combines duplicating data by application needs for fast reading and relations of data for data integrity with auto distribution of changes ...
0
votes
1answer
84 views

What are good approaches for migrating data format in schemaless databases?

If you use schemaless database (particularly document-oriented databases like CouchDB, Couchbase, MongoDB) and want to change format of data representation for a particular object you may leave ...
0
votes
3answers
146 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 ...
1
vote
0answers
76 views

MongoKit: Unexpected behaviour when using use_schemaless together with use_dot_notation

I am using MongoKit (v0.8.1) and am bit confused about the behaviour when defining a document with use_schemaless=True and use_dot_notation=True. MongoKit ignores any dynamic attributes (ie. anything ...
0
votes
1answer
94 views

schemaless database for fast querying

Theres a system that stores logs in Oracle DB. The schema looks more or less like this: CREATE TABLE "LOG_MESSAGE" ( "ID" CHAR(16 BYTE), "LOG_TYPE" CHAR(10 BYTE), ...
-4
votes
2answers
88 views

What are the real-time compute solutions that can take raw semistructured data as input?

Are there any technologies that can take raw semistructured, schemaless big data input (say from HDFS or S3), perform near-real-time compute on it, and generate output that can be queried or plugged ...
0
votes
2answers
1k views

PHP with Mongo DB store & view Images

I successfully stored image files in MongoDB using PHP, when i retrieve images from Mongo db i had some problem, can anyone give the solution Here is my code: <?php $m = new Mongo(); $db = ...
0
votes
0answers
28 views

Data / infrastructure opinions needed for my site OacDb.com

When I created the site oacdb.com, I used MySQL and a Rails-inspired framework. I originally made this site because of my interest in relating these types of data together and learning how to do it ...
8
votes
1answer
148 views

Are there any general patterns for designing classes for schemaless databases in .NET?

I have done a little bit of work with mongoDB in C# but all of my code is still in development. I am wondering what useful patterns people have found in evolving their domain classes over time as new ...
5
votes
2answers
595 views

Schemaless financial data, and NoSQL?

We have an application that works with financial data that is schemaless. More accurately, the shemaless data is information about an order, where fields are customized by the merchant. Consistency ...
0
votes
1answer
115 views

What is the relative cost of reading rows vs. columns in SQLite?

I am attempting to create a wrapper around SQLite databases that would allow schema-less access from .net applications. The idea is to have each entity as simply a collection or attribute value ...
0
votes
1answer
256 views

Need visual application development tool for complex many-to-many and hierarchical relationships

I'm looking for a visual database application development tool (GUI based, or script) that we can use to develop an application that takes a set of text and numeric fields through a series of ...
1
vote
2answers
263 views

How to consume ad hoc web services (non-SOAP, schemaless XML)?

I need to write integrations to multiple external web services. Some of them are SOAP (have WSDL), some of them pretty much ad hoc - HTTP(s), authentication either by basic auth or parameters in URL ...
2
votes
2answers
358 views

Schema dependent class to schemaless document using MongoDb and C#

Let us suppose we have a document to store our client which has fixed and extra fields. So here goes our sample class for the client: public class Client { public string Name{ get; set; } ...
7
votes
3answers
4k views

how to export collection to csv in mongodb

How to export all the record in mongodb to csv ? mongoexport --host localhost --db dbname --collection name --csv > test.csv This asks me to specify name of the fields I need to export. Can I ...
0
votes
1answer
51 views

Storing a property of the type specified in a string

There's an XML scheme which says something like this: <ExtraFields> <ExtraField Type="Int"> <Key>Mileage</Key> <Value>500000 </Value> </ExtraField> ...
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 ...
5
votes
4answers
717 views

Using a Filesystem (Not a Database!) for Schemaless Data - Best Practices

After reading over my other question, Using a Relational Database for Schema-Less Data, I began to wonder if a filesystem is more appropriate than a relational database for storing and querying ...
9
votes
5answers
3k 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 ...
7
votes
2answers
343 views

Array, EAV, Serialized LOB for custom fields?

I've been trying to answer a complex Mysql data structure problem for custom fields for an online app. I'm fairly new to Mysql so any input is appreciated. The current database is a relational ...
17
votes
4answers
3k views

What's the attraction of schemaless database systems?

I've been hearing a lot of talk about schema-less (often distributed) database systems like MongoDB, CouchDB, SimpleDB, etc... While I can understand they might be valuable for some purposes, in most ...
2
votes
1answer
495 views

Schemaless Data Cache: NoSQL or Other Alternatives?

I am evaluating a number of NoSQL implementations (RavenDB and MongoDB at the moment) as a means of solving a specific set of requirements that involve storage/retrieval of data that is schema-less. ...
2
votes
1answer
691 views

Schema less SQL database table - practical compromise

This question is an attempt to find a practical solution for this question. I need a semi-schema less design for my SQL database. However, I can limit the flexibility to shoehorn it into the entire ...
3
votes
3answers
283 views

Does this schema sound better suited for a document-oriented data store or relational?

Disclaimer: let me know if this question is better suited for serverfault.com I want to store information on music, specifically: genres artists albums songs This information will be used in a ...
15
votes
3answers
6k views

Django and NoSQL, any ready-to-use library?

So far Django has good integration with several RDBMS. NoSQL, schema-less and document-oriented DBMS are picking up. What's the status of integration those on-trend and fashionable DBMSes with Django? ...
0
votes
2answers
158 views

Can the Friendly ORM be used alongside a traditional database schema?

Can I use ActiveRecord for existing models and Friendly for new models? Basically, I want to decide which models I'd like to be schemaless and which models I'd like to be done the "old" style.
2
votes
3answers
517 views

Getting started with the Friendly ORM

I'm following this tutorial: http://friendlyorm.com/ I'm using InstantRails to run MySQL locally. To run Ruby and Rails, I'm using normal Windows installations. When I run Friendly.create_tables! I ...
9
votes
4answers
1k views

Best practices to access schema-less data?

I am toying with RDF, and in particular how to access information stored in a rdf storage. The huge difference from a traditional relational database is the lack of a predefined schema: in a ...
4
votes
5answers
2k views

What is couchdb, for what and how should I use it?

I hear a lot about couchdb, but after reading some documents about it, I still don't get why to use it and how. Could you clarify this mystery for me?
6
votes
2answers
2k views

Entity groups in Google App Engine Datastore

So I have an app that if I'm honest doesn't really need transactional integrity (lots of updates, none of them critical). So I was planning on simply leaving entity groups by the wayside for now. ...
9
votes
5answers
6k views

What is the best open source solution for storing time series data? [closed]

I am interested in monitoring some objects. I expect to get about 10000 data points every 15 minutes. (Maybe not at first, but this is the 'general ballpark'). I would also like to be able to get ...
2
votes
3answers
804 views

schema-less data warehouse and reporting

We have a system that generates many events as the result of a phone call/web request/sms/email etc, each of these events need to be able to be stored and be available for reporting (for MI/BI etc) ...