The physical disk can be divided into several
logical disks (which you
see as a separate drive letters like C:, or D: and so on), also called "
volumes".
The Master Boot Record (MBR) and optionally several Extended
Partition Pointers (EPPs) are used to hold information about how many
volumes there are on the physical disk, and where they are located. MBR and EPPs
occupy 512 bytes (one sector) each. MBR is located in a sector 0 of the physical
disk and contains some machine code responsible for the boot process. It also
contains up to four entries describing a partition. Each of those may be unused,
may point directly to the volume, or point to the EPP block. Each EPP block
contains a pointer to the volume and an optional pointer to the next EPP block
in chain. This way, one can split a single physical disk into more than four
logical volumes. A partition defined in MBR is called Primary Partition,
as opposed to the partition defined in one of the extended partition chain EPPs,
which is called Logical Drive.
These tables
(MBR and EPPs) are collectively referred to as Partition Table. The set
of the EPP blocks (and sometimes volumes contained therein) is called
Extended Partition.
If the Windows 2000/XP or later "Dynamic Disks" are used, the partition table
is not used (except for a boot process and one compatibility entry). LDM
database is used instead.
Some
typical partitioning layouts are illustrated below:
(1) Features primary volumes only, with no extended
partitions present.
(2) Features one primary volume and one logical drive with the simple
(non-chained) extended partition record
(3) Presents the example containing one primary volume and two extended volumes
(extended partition records are chained)
There are some limits: the MBR can only contain up to four
records in total (counting both primary partitions and a pointer to EPR, if
any). In theory, the EPR may contain four entries as well (thus making extended
partition chain forks possible) but in practice this is never used. Also, the
logical drives in the extended partition cannot be made "active" (bootable).