Skip to the content.

Things I want to know more about

Readings: Mongo and Mongoose

What is auth


Fill in the chart below with five differences between SQL and NoSQL databases

SQL

  1. use tables to store data
  2. SQL databases have predefined schema
  3. SQL databases are vertically scalable
  4. SQL databases are scaled by increasing the horse-power of the hardware
  5. SQL databases uses SQL ( structured query language ) for defining and manipulating the data
  6. SQL database examples: MySql, Oracle, Sqlite, Postgres and MS-SQL

NoSQL

  1. use documents
  2. NoSQL databases have dynamic schema for unstructured data
  3. the NoSQL databases are horizontally scalable
  4. NoSQL databases are scaled by increasing the databases servers in the pool of resources to reduce the load
  5. In NoSQL database, queries are focused on collection of documents. Sometimes it is also called as UnQL (Unstructured Query Language). The syntax of using UnQL varies from database to database.
  6. NoSQL database examples: MongoDB, BigTable, Redis, RavenDb, Cassandra, Hbase, Neo4j and CouchDb What kind of data is a good fit for an SQL database?

What kind of data is a good fit for an SQL database?

Give a real world example?

What kind of data is a good fit a NoSQL database?

Which type of database is best for hierarchical data storage?

Which type of database is best for scalability??


What does SQL stand for?

What is a realational database?

What type of structure does a relational database work with?

What is a ‘schema’?

What is a NoSQL database?

Howo does it work?

What is inside of a Mongo database?

Which is more flexible - SQL or MongoDB? and why?

What is the disadvantage of a NoSQL database?