• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » What is Column-oriented Database?

By Abhishek Ghosh October 24, 2019 9:57 am Updated on October 24, 2019

What is Column-oriented Database?

Advertisement

In our previous articles, we have discussed about Key-Value Database and Document-Oriented Database. The Column-oriented Database is another major type of database which is used in data sciences.

The Column-oriented Databases store data tables by column (not row). These can use query languages like SQL and can serve data for extract, transform, load (ETL) and data visualization. The result, the database can access the data in a granular way avoiding scanning and discarding unwanted data. A common method of storing is to serialize each row of data. Take that two persons are having text chat and this is the JSON form :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
  {
    "message": "Hi Abhishek. How are you?",
    "timestamp": 1571909530,
    "senderId": 111111,
    "seen": true
  },{
    "message": "This is Kiki.",
    "timestamp": 1571909607,
    "senderId": 111112,
    "seen": true
  },{
    "message": "Hi Kiki. I am fine. How are you?",
    "timestamp": 1571909653,
    "senderId": 111113,
    "seen": false
  }
]

I have used UNIX timestamp of the present time to create the conversation. SenderID is imaginary. Below will be its column-oriented representation :

Advertisement

---

Vim
1
2
3
4
5
6
{
  "messages": ["Hi Abhishek. How are you?", "This is Kiki.", "Hi Kiki. I am fine. How are you?"],
  "timestamps": [1571909530, 1571909607, 1571909653],
  "senderId": [111111, 111112, 111113],
  "seen": [true, true, false]
}

We can use some script to concatenate in the above form. In the binary form, we get to benefit a column-oriented data by simple alignment. We are talking about the data structure alignment and completely avoiding this article. Column-oriented Database a good solution for size reduction by avoiding repetition – byte packing. Although not everything of Column-oriented Database is just great.

Column oriented. Row oriented.

Row Oriented Databases store as row-wise. The column values are stored together. The data is in data files occupies a certain number of physical blocks. In each block, a certain number of rows stored. These are suitable for transactional (OLTP) workloads. Data of Column-oriented Database persist on a set of column files comprising of several physical disk blocks. One column is stored as a single column file. These are more suitable or analytical (OLAP) workloads. A SATA hard drive has an average seek time of 20 milliseconds while DRAM access on latest Intel processors have seek time of 60 nanoseconds. Column-oriented Database boosts the performance by reducing disk reading amount. Column-oriented databases play great with the data which is much larger than available RAM, or where stream processing is needed.

Tagged With column oriented database , open db file , cap and column oriented , column oriented database characteristics , column-oriented , what is a column oriented database , what is column oriented database , what is column-oriented table service , what is the principal column oriented
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to What is Column-oriented Database?

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Changing Data With cURL for OpenStack Swift (HP Cloud CDN)

    Changing Data With cURL For Object is Quite Easy in OpenStack Swift. Here Are Examples With HP Cloud CDN To Make it Clear. Official Examples Are Bad.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

  • Theoretical Foundations of Big Data : Part 3

    Theoretical Foundations of Big Data is third and final part of our series of articles. We have talked about Data Mining, OLAP & softwares.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy