Tech Blogs
  • Vivek bhargav
  • Books
    • Seven Databases In Seven Weeks
      • Factors to consider
      • Genres of databases
      • Important questions
      • PostGreSQL
  • Tech
    • C++
      • Type Conversions
      • String
      • Vector
      • Set
      • Unordered Set
      • Map
      • Unordered Map
      • Queue
      • Priority Queue
      • Union find
      • Algorithms
      • Matrix to Graph
      • Trie
      • Dijkstra
      • Math
      • Utils
    • Database Transactions
      • A Simple Transaction Analysis
      • Implementation of Isolation Levels
      • Isolation Levels
      • Isolation
      • Storage Types
      • Transaction Atomicity and Durability
    • Java
      • Important Questions
      • Spring MVC
    • Program execution
      • Node.js
      • Runtimes
    • System Design
      • Basic Terminologies
      • CAP Theorem
      • Normalization of Database
      • Useful Reads
  • Personal Finance
    • Asset Classes
      • Equity instruments
      • Debt instruments
Powered by GitBook
On this page
  1. Books
  2. Seven Databases In Seven Weeks

Factors to consider

  • What data types does it support and what are your own requirements for data types ?

  • Do you need flexible schema or rigid schema ?

  • Is query flexibility important to you ?

  • Do you want to store large amounts of data across several machines

  • How much important is sata safety (via ACID compliance or something else)

  • Do you need Triggers

  • Do you need Transactions (for atomicity)

  • Do you need Stored Procedures

  • How much important is having ability to create Views for you ?

  • Can you live without Joins ?

  • Do you need Partitioning ?

  • Do you need to store only large blobs of data ?

  • Do you have enough information about the database requirements (like schema, probable tables, data types etc)

PreviousSeven Databases In Seven WeeksNextGenres of databases

Last updated 5 years ago