Skip to content
This repository has been archived by the owner on Jan 26, 2018. It is now read-only.

Latest commit

 

History

History
15 lines (11 loc) · 887 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 887 Bytes

DBMS Implementation

This project contains four fundamental functions of a DBMS system (External Mergesort, Merge-Join, Hash-Join, Duplicate Elimination) that are designed to work in real-life and extreme circumstances (Huge input data, extremely low available memory).

The tools used for the implementation are:

  • C++ 11 std
  • GNU g++ 4.7.2 compiler
  • GNU gdb 7.5 debugger

Use the main.cpp file as a driver. You can create new files of any size and execute any of the previously mentioned functions. Upon completion, apart from execution time, you will be informed about statistics such as the number of I/O operations or the amount of sorted segments that were created.
Note: Upon compiling, make sure you use the -O3 flag for extra optimization.

DBMS Implementation
Copyright (C) 2013 George Piskas, George Economides