About 51 results
Open links in new tab
  1. What is NoSQL, how does it work, and what benefits does it provide?

    NoSQL databases aren't a replacement for SQL - they are an alternative. Most software ecosystems around the different NoSQL databases aren't as mature yet. While there are advances, you still …

  2. mongodb - When should I use a NoSQL database instead of a …

    Sep 15, 2010 · 17 NoSQL is a database system where data is organized into the document (MongoDB), key-value pair (MemCache, Redis), and graph structure form (Neo4J). Maybe there are possible …

  3. Is there any NoSQL data store that is ACID compliant?

    Apr 9, 2010 · NoSQL is a movement promoting a loosely defined class of non-relational data stores that break with a long history of relational databases and ACID guarantees.

  4. Is PostgreSQL a NoSQL database? - Stack Overflow

    Apr 19, 2019 · "NoSQL" is a buzzword describing a diverse collection of database systems that focus on "semi-structured" data (that do not fit well into a tabular representation), sharding, and high …

  5. sql - Join operation with NOSQL - Stack Overflow

    Jan 3, 2010 · Additionally most nosql don't (really) support secondary indexes either, which means you have to duplicate stuff if you want to query by any other criterion. If you're storing data such as …

  6. NoSQL Use Case Scenarios or WHEN to use NoSQL [closed]

    May 11, 2012 · NoSQL DBs often lack the ability to perform atomic operations across multiple "tables". You really need to look at and understand what the various types of NoSQL stores are, and how they …

  7. database - What exactly is NoSQL? - Stack Overflow

    What is NoSQL ? NoSQL is the acronym for Not Only SQL. The basic qualities of NoSQL databases are schemaless, distributed and horizontally scalable on commodity hardware.

  8. rdbms - What's the difference between NoSQL and a Column-Oriented ...

    May 9, 2010 · 9 Some NoSQL databases are column-oriented databases, and some SQL databases are column-oriented as well. Whether the database is column or row-oriented is a physical storage …

  9. NoSql and Data-Warehouse - Stack Overflow

    Apr 21, 2010 · NoSQL solutions usually manage relatively limited schemas with large cardinality in few entities, while data warehouses typically have lots of facts and dimensions (in a dimensional model) …

  10. SQL versus noSQL (speed) - Stack Overflow

    When people are comparing SQL and noSQL, and concluding the upsides and downsides of each one, what I never hear anyone talking about is the speed. Isn't performing SQL queries generally faster t...