Difference between RDBMS and Hive
RDBMS:
RDBMS stands for Relational Database Management System. RDBMS is a such type of database management system which is specifically designed for relational databases. RDBMS is a subset of DBMS. A relational database refers to a database that stores data in a structured format using rows and columns and that structured form is known as table. There are some certain rules defined in RDBMS and that are known as Codd’s rule.
Hive:
Hive is a data warehouse software system that provides data query and analysis. Hive gives an interface like SQL to query data stored in various databases and file systems that integrate with Hadoop. Hive helps with querying and managing large datasets real fast. It is an ETL tool for Hadoop ecosystem.
Difference between RDBMS and Hive:
RDBMS | Hive |
---|---|
It is used to maintain database. | It is used to maintain data warehouse. |
It uses SQL (Structured Query Language). | It uses HQL (Hive Query Language). |
Schema is fixed in RDBMS. | Schema varies in it. |
Normalized data is stored. | Normalized and de-normalized both type of data is stored. |
Tables in rdms are sparse. | Table in hive are dense. |
It doesn’t support partitioning. | It supports automation partition. |
No partition method is used. | Sharding method is used for partition. |
Recommended Posts:
- Difference between Hive and HBase
- Difference between RDBMS and DBMS
- Difference between RDBMS and HBase
- Difference between RDBMS and MongoDB
- Difference between RDBMS and OODBMS
- Apache Hive
- Architecture and Working of Hive
- Difference between C and C++
- Difference between MAN and WAN
- Difference between MP4 and MP3
- Difference between RPC and RMI
- Difference between PNG and GIF
- Web 1.0, Web 2.0 and Web 3.0 with their difference
- Difference between LED and LCD
- Difference between CRT and LCD
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.