Database Storage
Customer Feedbacks
Simply Love It! Great Job, love the new panel, huge upgrade. We appreciate your service and hard work! Thanks again! Craig S.

Great new Control Panel setup. Well done! James F.

I really love the new control panel, the whole layout is much easier to navigate. The upload speed is much faster and I really enjoy the look and feel of the new site. Sincerely,
Samantha S.

The new control panel is so much better. I think this one has much more control over files and how they are controled compared to the previous one. Patrick J.

New set up works very well for me i have found it really easy to use so far once i got used to it, thanks for a great job on the upgrade. Jerry-Smith K.

Absolutely brilliant!
MUCH faster! MUCH more user-friendly! I LOVE the new control panel! Reuben B.

Cool Upgrade !!
Thank you for the new panel..its very cool!! HBL

The New Control Panel! I like it. It's much more professional than the previous one and easy to navigate around. I haven't spotted any errors yet. John K.

Just a short note to say that the new control panel seems easier to work with than the old one. eep up the good work. Troy J.

Love everything so far about the new Control Panel. Much more intuitive than before. K O'Neill

The purpose of every
database is to store information, texts,
images, even
media files. All dynamic modern
websites rely on one or more databases for storing articles and other published content, information about the users, contact information, connections to other websites, ads, etc. And just like anything else, storing information will require a space to be stored in.
Table of contents :
Database storage
The space occupied on the
server by one database is called 'database
storage space' and is part of the maximum database volume allowed, called 'database quota'. When the database storage space becomes as big as the allowed storage quota, the server refuses to add new data to the database, and this can subsequently lead to faults or inability to work with the current web application.
The database quota is usually separated from the total
disk space quota. This can help the end user to better monitor the size of his databases and their growth. All
web hosting plans provided by NTC Hosting offer a handy "Account Usage" section, which will allow you to keep track of your current database and database quota usage.

All our
hosting plans offer substantial database storage, alongside with the option to upgrade at any moment, if you need more databases or are running out of database storage space.
Database storage structure
All the information in a database is organized and structured in database
tables. These tables are stored on the hard disk of the database server. The database tables are usually divided into
columns and
rows, just like a regular graphic table. In a database table, the columns specify the information category and the data type and the rows hold the actual information. This structure is chosen for its ease of use – it can be easily indexed, accessed or modified.
The information itself is typically saved in one of the many types of ordered and unordered flat files, ISAM, heaps, hash buckets or B+ trees. The most commonly used database structures are the B+ trees and ISAM.
Flat file databases
Flat file databases are the simplest type of databases in terms of structure. They are usually in plain text format and contain one record per line. The simplest example of a flat structured database is a sheet of paper with names, and with a phone number next to each name.
Heaps
Heaps represent a tree-based database structure. With a heap, you have a root node, which is always bigger, or at least of equal value compared with its child node. The child nodes of the root's child nodes are again of equal or less value compared with its parent and so on. This is the main difference between the heap structure and a simple tree structure.
B+ tree
The B+ tree structure is perhaps the most widely used data structure. It is used in several file systems, such as NTFS, XFS and ReiserFS, and is also used as a data structure in PostgreSQL and MySQL. The B+ tree structure is an improved version of the B-tree structure. It represents a type of tree, which can present sorted data in a manner, allowing easy indexing, searching and editing of all the records.
ISAM
Originally developed by IBM for fast data indexing and retrieval purposes, the ISAM is now one of the most popular database structures. With ISAM, there is a special set of indexes, which index all records and allow for faster search times, since the search will go through the indexes and not through the actual records. The ISAM structure is used today in
MySQL as the main storage engine.