All Topics  
Backup

 

   Email Print
   Bookmark   Link

 

Backup


 
 
In information technologyInformation technology Overview

Information Technology is a broad subject concerned with the use of technology in managing and processing information, espe...
, backup refers to making copies of dataData

In general, data consists of propositions that reflect reality....
 so that these additional copies may be used to restore the original after a data lossData loss Summary

In the field of information technology, data loss refers to the unforseen loss of data or information....
 event. These additional copies are typically called "backups." Backups are useful primarily for two purposes. The first is to restore a state following a disaster (called disaster recoveryDisaster recovery

A Disaster recovery plan covers the data, hardware and software critical for a business to restart operations in the event o...
). The second is to restore small numbers of files after they have been accidentally deleted or corrupted. Backups are typically that last line of defense against data loss, and consequently the least granular and the least convenient to use.

Since a backup system contains at least one copy of all data worth saving, the data storage requirements are considerable.






Discussion
Ask a question about 'Backup'
Start a new discussion about 'Backup'
Answer questions from other users
Full Discussion Forum



Quotations


Backup: The duplicate copy of crucial data that no one bothered to make, used only in the abstract.

Only wimps use tape backup: _real_ men just upload their important stuff on

BANANA - Backups Are Not Archives, NOT ARCHIVES.

Anderson McCammont, quoting someone else on the veritas-bu mailing list (3/27/2007).





Encyclopedia


In information technologyInformation technology Overview

Information Technology is a broad subject concerned with the use of technology in managing and processing information, espe...
, backup refers to making copies of dataData

In general, data consists of propositions that reflect reality....
 so that these additional copies may be used to restore the original after a data lossData loss Summary

In the field of information technology, data loss refers to the unforseen loss of data or information....
 event. These additional copies are typically called "backups." Backups are useful primarily for two purposes. The first is to restore a state following a disaster (called disaster recoveryDisaster recovery

A Disaster recovery plan covers the data, hardware and software critical for a business to restart operations in the event o...
). The second is to restore small numbers of files after they have been accidentally deleted or corrupted. Backups are typically that last line of defense against data loss, and consequently the least granular and the least convenient to use.

Since a backup system contains at least one copy of all data worth saving, the data storage requirements are considerable. Organizing this storage space and managing the backup process is a complicated undertaking. A data repository model can be used to provide structure to the storage. In the modern era of computing there are many different types of data storage deviceData storage device

In computing, a data storage device—as the name implies—is a device for storing data....
s that are useful for making backups. There are also many different ways in which these devices can be arranged to provide geographic redundancy, data security, and portability.

Before data is sent to its storage location, it is selected, extracted, and manipulated. Many different techniques have been developed to optimize the backup procedure. These include optimizations for dealing with open files and live data sources as well as compression, encryption, and de-duplication, among others. Many organizations and individuals try to have confidence that the process is working as expected and work to define measurements and validation techniques. It is also important to recognize the limitations and human factors involved in any backup scheme.

Due to a considerable overlap in technology, backups and backup systems are frequently confused with archiveArchive

Archives refers to a collection of records, and also refers to the location in which these records are kept....
s and fault-tolerant systemFault-tolerant system

Fault-tolerance or graceful degradation is the property that enables a system to continue operating properly in the ev...
s. Backups differ from archives in the sense that archives are the primary copy of data and backups are a secondary copy of data. Archives are the primary copy of the item, usually put away for future use, while backups are the secondary copy, kept on hand to replace the original item. Backup systems differ from fault-tolerant systems in the sense that backup systems assume that a fault will cause a data loss event and fault-tolerant systems assume a fault will not.

Storage, the base of a backup system

Data repository models

Any backup strategy starts with a concept of a data repository. The backup data needs to be stored somehow and probably should be organized to a degree. It can be as simple as a sheet of paper with a list of all backup tapes and the dates they were written or a more sophisticated setup with a computerized index, catalog, or relational database. Different repository models have different advantages. This is closely related to choosing a backup rotation schemeBackup rotation scheme

A Backup rotation scheme is a method for effectively backing up data where multiple media format are used in the backup proc...
.

Unstructured : An unstructured repository may simply be a stack of floppy disks or CD-R/DVD-R media with minimal information about what was backed up and when. This is the easiest to implement, but probably the least likely to achieve a high level of recoverability.
Full + IncrementalsIncremental backup

An incremental backup is a backup method where multiple backups are kept....
: A Full + Incremental repository aims to make storing several copies of the source data more feasible. At first, a full backup (of all files) is taken. After that an incremental backup (of only the files that have changed since the previous full or incremental backup) can be taken. Restoring whole systems to a certain point in time would require locating the full backup taken previous to that time and all the incremental backups taken between that full backup and the particular point in time to which the system is supposed to be restored. This model offers a high level of security that something can be restored and can be used with removable media such as tapes and optical disks. The downside is dealing with a long series of incrementals and the high storage requirements.
Full + Differential : A full + differential backup differs from a full + incremental in that after the full backup is taken, each partial backup captures all files created or changed since the full backup, even though some may have been included in a previous partial backup. Its advantage is that a restore involves recovering only the last full backup and then overlaying it with the last differential backup.
MirrorMirror (computing)

A mirror in computing is a direct copy of a data set....
 + Reverse IncrementalsRsync

rsync is a free software computer program for Unix systems which synchronizes files and directories from one location to ano...
: A Mirror + Reverse Incrementals repository is similar to a Full + Incrementals repository. The difference is instead of an aging full backup followed by a series of incrementals, this model offers a mirror that reflects the system state as of the last backup and a history of reverse incrementals. One benefit of this is it only requires an initial full backup. Each incremental backup is immediately applied to the mirror and the files they replace are moved to a reverse incremental. This model is not suited to use removable media since every backup must be done in comparison to the mirror.
Continuous data protectionContinuous data protection

Continuous data protection, also called continuous backup, refers to backup of computer data by automatically saving a...
 : This model takes it a step further and instead of scheduling periodic backups, the system immediately logs every change on the host system. This is generally done by saving byte or block-level differences rather than file-level differences. It differs from simple disk mirroringDisk mirroring

In data storage, disk mirroring or file shadowing is the replication of data on separate disks in real time to ensure ...
 in that it enables a roll-back of the log and thus restore of old image of data.

Storage media

Regardless of the repository model that is used, the data has to be stored on some data storage medium somewhere.

Magnetic tapeFacts About Magnetic tape data storage

Magnetic tape has been used for data storage for over 70 years....
 : Magnetic tape has long been the most commonly used medium for bulk data storage, backup, archiving, and interchange. Tape has typically had an order of magnitude better capacity/price ratio when compared to hard disk, but recently the ratios for tape and hard disk have become a lot closer. There are myriad formats, many of which are proprietary or specific to certain markets like mainframes or a particular brand of personal computer. Tape is a sequential access medium, so even though access times may be poor, the rate of continuously writing or reading data can actually be very fast. Some new tape drives are even faster than modern hard disks.
Hard diskHard disk

A hard disk drive is a digitally encoded non-volatile storage device which stores data on the magnetic surfaces of hard dis...
 : The capacity/price ratio of hard disk has been rapidly improving for many years. This is making it more competitive with magnetic tape as a bulk storage medium. The main advantages of hard disk storage are low access times, availability, capacity and ease of use. External disks can be connected via local interfaces like SCSISCSI

SCSI stands for "Small Computer System Interface", and is a standard interface and command set for transferring data b...
, USB, FireWireFireWire

FireWire is the name given to the external wired interface specified by the IEEE standard 1394....
, or eSATA, or via longer distance technologies like EthernetEthernet Summary

Ethernet is a large and diverse family of frame-based computer networking technologies for local area networks ....
, iSCSIISCSI

Internet SCSI is an official standard ratified on 2003-02-11 by the Internet Engineering Task Force that allows the use of t...
, or Fibre ChannelFibre Channel

Fibre Channel is a gigabit-speed network technology primarily used for storage networking....
. Some disk-based backup systems, such as Virtual Tape Libraries, support data de-duplication which can dramatically reduce the amount of disk storage capacity consumed by daily and weekly backup data.
Optical discOptical disc

In computing, sound reproduction, and video, an optical disc is flat, circular, usually polycarbonate disc whereon data is ...
 : A recordable CD can be used as a backup device. One advantage of CDs is that they can be restored on any machine with a CD-ROM drive. In addition, recordable CD's are relatively cheap. Another common format is recordable DVDDVD recordable Summary

DVD recordable and DVD rewritable refer to DVD optical disc formats that can be recorded, either or rewritable format...
. Many optical disk formats are WORMWrite Once Read Many

WORM means Write Once, Read Many times....
 type, which makes them useful for archival purposes since the data can't be changed. Other rewritable formats can also be utilized such as CD-RWCD-RW

Compact Disc ReWritable is a rewritable optical disc format....
 or DVD-RAMDVD-RAM

DVD-RAM is a disc specification presented in 1996 by the DVD Forum, which specifies rewritable DVD-RAM media and the appropr...
. The newer HD-DVDs and Blu-ray DiscsBlu-ray Disc

A Blu-ray Disc is a next-generation optical disc format designed for high-density storage of high-definition video and data....
 dramatically increase the amount of data possible on a single optical storage disk, though, as yet, the hardware may be cost prohibitive for many people.
Floppy diskFloppy disk

A floppy disk is a data storage device that is composed of a disk of thin, flexible magnetic storage medium encased in a sq...
 : During the 1980s and early 1990s, many personal/home computer users associated backup mostly with copying floppy disks. The low data capacity of a floppy disk makes it an unpopular and obsolete choice today.
Solid state storage : Also known as flash memoryFlash memory

Flash memory is a form of non-volatile computer memory that can be electrically erased and reprogrammed....
, thumb drives, USB flash driveUSB flash drive Overview

USB flash drives are NAND-type flash memory data storage devices integrated with a USB interface....
s, CompactFlashCompactFlash

CompactFlash was originally a type of data storage device, used in portable electronic devices....
, SmartMediaSmartMedia

SmartMedia is a flash memory card standard owned by Toshiba....
, Memory StickMemory Stick

Memory Stick is a removable flash memory card format, launched by Sony in October 1998 , and is also used in general to desc...
, Secure Digital cardSecure Digital card

Secure Digital is a flash memory memory card format used in portable devices, including digital cameras and handheld compute...
s, etc., these devices are relatively costly for their low capacity, but offer excellent portability and ease-of-use.
Remote backup serviceRemote backup service Summary

A remote backup service or online backup service is a service that provides users with an online system for backing up...
 : As broadband internet accessBroadband Internet access

Broadband Internet access, often shortened to "broadband Internet" or just "broadband", is a high data-transmiss...
 becomes more widespread, remote backup services are gaining in popularity. Backing up via the internet to a remote location can protect against some worst-case scenarios such as fire, flood, earthquake or nuclear strike which would destroy any backups in the immediate vicinity along with everything else. A drawback to a remote backup service is that an internet connection is usually substantially slower than the speed of local data storage devices, so this can be a problem for people with large amounts of data. It also has the risk associated with putting control of personal or sensitive data in the hands of a third party.

Managing the data repository

Regardless of the data repository model or data storage media used for backups, a balance needs to be struck between accessibility, security and cost.

On-lineFacts About Online

In general, something is said to be online if it is connected to some larger network or system....
 : On-line backup storage is typically the most accessible type of data storage, which can begin restore in milliseconds time. A good example would be an internal hard disk or a disk arrayDisk array

A disk array is an enterprise storage system which contains multiple disk drives....
 (maybe connected to SANStorage area network

In computing, a storage area network is a network designed to attach computer storage devices such as disk array controllers...
). This type of storage is very convenient and speedy, but is relatively expensive. On-line storage is vulnerable to being deleted or overwritten, either by accident, or in the wake of a data-deleting virusComputer virus

In computer security, a computer virus is a self-replicating computer program that spreads by inserting copies of itself int...
 payload.
Near-lineFacts About Nearline storage

Nearline storage is a term used in computer science to describe an intermediate type of data storage....
 : Near-line storage is typically less accessible and less expensive than on-line storage, but still useful for backup data storage. A good example would be a tape library with restore times ranging from seconds to a few minutes. A mechanical device is usually involved in moving media units from storage into a drive where the data can be read or written.
Off-lineOff-line storage

Off-line storage is a computer storage medium which must be inserted into a storage drive by a human operator before a compu...
 : Off-line storage is similar to near-line, except it requires human interaction to make storage media available. This can be as simple as storing backup tapes in a file cabinet. Media access time can be anywhere from a few seconds to more than an hour.
Off-site vaultOff-site Data Protection Overview

Off-site Data Protection is the strategy of sending business critical data to an offsite location as part of an IT Disaster ...
 : To protect against a disaster or other site-specific problem, many people choose to send backup media to an off-site vault. The vault can be as simple as the System Administrator’s home office or as sophisticated as a disaster hardened, temperature controlled, high security bunker that has facilities for backup media storage.
Backup site, Disaster Recovery CenterDisaster Recovery Center Overview

Disaster recovery in Information Technology is the ability of an infrastructure to restart operations after a disaster....
 or DR Center: In the event of a disaster, the data on backup media will not be sufficient to recover. Computer systems onto which the data can be restored and properly configured networks are necessary too. Some organizations have their own data recovery centers that are equipped for this scenario. Other organizations contract this out to a third-party recovery center. Note that because DR site is itself a huge investment, backup is very rarely considered preferred method of moving data to DR site. More typical way would be remote disk mirroringDisk mirroring Overview

In data storage, disk mirroring or file shadowing is the replication of data on separate disks in real time to ensure ...
, which keeps the DR data as up-to-date as possible.

Selection, extraction and manipulation of data

Selection and extraction of file data

Deciding what to back up at any given time is a harder process than it seems. By backing up too much redundant data, the data repository will fill up too quickly. Backing up an insufficient amount of data can eventually lead to the loss of critical information.

Copying filesFile copying

File copying is creation of a new file which has the same content as an existing file....
 : Making copies of files is the simplest and most common way to perform a backup. A means to perform this basic function is included in all backup software and all operating systems.

Filesystem dump : Instead of copying files within a filesystem, a copy of the whole filesystem itself can be made. This is also known as a raw partition backup and is related to disk imagingDisk image

A disk image is a computer file containing the complete contents and structure of a data storage medium or device....
. The process usually involves unmounting the filesystem and running a program like dumpDump (program)

Dump is a unix program used to backup file systems....
. This type of backup has the possibility of running faster than a backup that simply copies files. A feature of some dump software is the ability to restore specific files from the dump image.

Identification of changes : Some filesystems have an archive bit for each file that says it was recently changed. Some backup software looks at the date of the file and compares it with the last backup, to determine whether the file was changed.

Block Level Incremental : A more sophisticated method of backing up changes to files is to only back up the blocks within the file that changed. This requires a higher level of integration between the filesystem and the backup software.

Versioning file systemVersioning file system

A versioning file system is a file system which provides for the concurrent existence of several versions of a file....
 : A versioning filesystem keeps track of all changes to a file and makes those changes accessible to the user. Generally this gives access to any previous version, all the way back to the file's creation time. An example of this is the Wayback versioning filesystem for Linux.

Selection and extraction of metadata

Not all information stored on the computer is stored in files. Accurately recovering a complete system from scratch requires keeping track of this non-file data too.
System description : System specifications are needed to procure an exact replacement after a disaster.
Boot sectorBoot sector

A boot sector is a sector of a hard disk, floppy disk, or similar data storage device that contains code for bootstrapping p...
 : The boot sector can sometimes be recreated more easily than saving it. Still, it usually isn't a normal file and the system won't boot without it.
PartitionDisk partitioning

In computer engineering, hard disk drive partitioning is the creation of logical divisions upon a hard disk that allows one ...
 layout : The layout of the original disk, as well as partition tables and filesystem settings, is needed to properly recreate the original system.
File metadataMetadata

Metadata are data that describe other data....
 : Each file's permissions, owner, group, ACLs, and any other metadata need to be backed up for a restore to properly recreate the original environment.
System metadata : Different operating systems have different ways of storing configuration information. Windows keeps a registryWindows registry Summary

In computing, the Windows registry is a database which stores settings and options for the operating system for Microsoft Wi...
 of system information that is more difficult to restore than a typical file.

Manipulation of data

It is frequently useful to manipulate the data being backed up to optimize the backup process. These manipulations can improve backup speed, restore speed, data security, and media usage.
CompressionData compression

In computer science and information theory, data compression or source coding is the process of encoding information u...
 : Various schemes can be employed to shrink the size of the source data to be stored so that uses less storage space. Compression is frequently a built-in feature of tape drive hardware.
De-duplicationCapacity optimization

Capacity optimization technologies are similar to data compression technologies, but they look for redundancy of very large ...
 : When multiple similar systems are backed up to the same destination storage device, there exists the potential for much redundancy within the backed up data. For example, if 20 Windows workstations were backed up to the same data repository, they might share a common set of system files. The data repository only needs to store one copy of those files to be able to restore any one of those workstations. This technique can be applied at the file level or even on raw blocks of data, potentially resulting in a massive reduction in required storage space. Deduplication can occur on a server before any data moves to backup media, sometimes referred to as source/client side deduplication. This approach also reduces bandwidth required to send backup data to its target media. The process can also occur at the target storage device, sometimes referred to as inline or back-end deduplication;
DuplicationFacts About Replication (computer science)

Replication refers to the use of redundant resources, such as software or hardware components, to improve reliability, fault...
 : Sometimes backup jobs are duplicated to a second set of storage media. This can be done to rearrange the backup images to optimize restore speed, to have a second copy at a different location or on a different storage medium.
EncryptionEncryption

In cryptography, encryption is the process of obscuring information to make it unreadable without special knowledge....
 : High capacity removable storage media such as backup tapes present a data security risk if they are lost or stolen. Encrypting the data on these media can mitigate this problem, but presents new problems. First, encryption is a CPU intensive process that can slow down backup speeds. Second, once data has been encrypted, it can not be effectively compressed and the data compression function of many tape drives is ineffective. For this reason and since redundant data makes cryptanalytic attacks easier, many encryption implementations compress the data before encrypting it. Third, the security of the encrypted backups is only as effective as the security of the key management policy.
StagingDisk staging

Disk staging is using disks as an additional, temporary stage of backup process before finally storing backup to tape....
 : Sometimes backup jobs are copied to a staging disk before being copied to tape. This process is sometimes referred to as D2D2T, an acronym for Disk to Disk to Tape. This can be useful if there is a problem matching the speed of the final destination device with the source device as is frequently faced in network-based backup systems. It can also serve as a centralized location for applying other data manipulation techniques.

Managing the backup process

It is important to understand that backup is a process. As long as new data is being created and changes are being made, backups will need to be updated. Individuals and organizations with anything from one computer to thousands (or even millions) of computer systems all have requirements for protecting data. While the scale is different, the objectives and limitations are essentially the same. Likewise, those who perform backups need to know to what extent they were successful, regardless of scale.

Objectives

Recovery Point Objective (RPO) : The point in time that the restarted infrastructure will reflect. Essentially, this is the roll-back that will be experienced as a result of the recovery. The most desirable RPO would be the point just prior to the data loss event. Making a more recent recovery point achievable requires increasing the frequency of synchronizationFile synchronization

File Synchronization in computing is the process of making sure that two or more locations contain the same up-to-date infor...
 between the source data and the backup repository.
Recovery Time Objective (RTO) : The amount of time elapsed between disaster and restoration of business functions.
Data security : In addition to preserving access to data for its owners, data must be restricted from unauthorized access. Backups must be performed in a manner that does not compromise the original owner's undertaking. This can be achieved with data encryption and proper media handling policies.

Limitations

An effective backup scheme will take into consideration the limitations of the situation.
Backup window : The period of time when backups are permitted to run on a system is called the backup window. This is typically the time when the system see the least usage and the backup process will have the least amount of interference with normal operations. The backup window is usually planned with users' convenience in mind. If a backup extends past the defined backup window, a decision is made whether it is more beneficial to abort the backup or to increase the backup window.
Performance impact : All backup schemes have some performance impact on the system being backed up. For example, for the period of time that a computer system is being backed up, the hard drive is busy reading files for the purposes of the backup, and its full bandwidth is no longer available for other tasks. Such impacts should be analyzed.
Costs of hardware, software, labor : All types of storage media have a finite capacity with a real cost. Matching the correct amount of storage capacity (over time) with the backup needs is an important part of the design of a backup scheme. Any backup scheme has some labor requirement, but complicated schemes have considerably higher labor requirements. The cost of commercial backup software can also be considerable.
Network Bandwidth : Distributed backup systems can be impacted by limited network bandwidth.

Implementation

Meeting the defined objectives in the face of the above limitations can be a difficult task. The tools and concepts below can make that task more achievable.
Scheduling : Using a Job schedulerJob scheduler

A job scheduler is a software application that is in charge of unattended background executions, commonly known as batch pro...
 can greatly improve the reliability and consistency of backups by removing part of the human element. Many backup software packages include this functionality.
Authentication : Over the course of regular operations, the user accounts and/or system agents that perform the backups need to be authenticated at some level. The power to copy all data off of or onto a system requires unrestricted access. Using an authentication mechanism is a good way to prevent the backup scheme from being used for unauthorized activity.
Chain of trustChain of trust Overview

Chain of trust is a security architecture where each component of hardware and software is validated from the bottom up....
 : Removable storage media are physical items and must only be handled by trusted individuals. Establishing a chain of trusted individuals (and vendors) is critical to defining the security of the data.

Measuring the process

To ensure that the backup scheme is working as expected, the process needs to include monitoring key factors and maintaining historical data.

Backup validationBackup validation

Backup validation is the process whereby owners of computer data may examine how their data was backed up in order to unders...
 : (also known as "Backup Success Validation") The process by which owners of data can get information regarding how their data was backed up. This same process is also used to prove compliance to regulatory bodies outside of the organization, for example, an insurance company might be required under HIPAA to show "proof" that their patient data are meeting records retention requirements. Disaster, data complexity, data value and increasing dependence upon ever-growing volumes of data all contribute to the anxiety around and dependence upon successful backups to ensure business continuityBusiness continuity

Business Continuity is a progression of disaster recovery, aimed at allowing an organisation to continue functioning after ...
. For that reason, many organizations rely on third-party or "independent" solutions to test, validate, and optimize their backup operations (backup reporting).
Reporting : In larger configurations, reports are useful for monitoring media usage, device status, errors, vault coordination and other information about the backup process.
Logging : In addition to the history of computer generated reports, activity and change logs are useful for monitoring backup system events.
Validation : Many backup programs make use of checksumChecksum

A checksum is a form of redundancy check, a very simple measure for protecting the integrity of data by detecting errors in ...
s or hashHash function

A hash function is a way of creating a small digital "fingerprint" from any kind of data....
es to validate that the data was accurately copied. These offer several advantages. First, they allow data integrity to be verified without reference to the original file: if the file as stored on the backup medium has the same checksum as the saved value, then it is very probably correct. Second, some backup programs can use checksums to avoid making redundant copies of files, to improve backup speed. This is particularly useful for the de-duplication process.
Monitored Backup : Backup processes are monitored by a third party monitoring center. This center alerts users to any errors that occur during automated backups. Monitored backup requires software capable of pinging the monitoring center's servers in the case of errors.

Lore

Advice

  • The more important the data that is stored on the computer the greater the need is for backing up this data.
  • A backup is only as useful as its associated restore strategy.
  • Storing the copy near the original is unwise, since many disasters such as fire, flood and electrical surges are likely to cause damage to the backup at the same time.
  • Automated backup and scheduling should be considered, as manual backups can be affected by human error.
  • Backups will fail for a wide variety of reasons. A verification or monitoring strategy is an important part of a successful backup plan.
  • It is good to store backed up archives in open/standard formats. This helps with recovery in the future when the software used to make the backup is obsolete. It also allows different software to be used.

Events

  • In 1997, during a fire at the headquarters of Credit LyonnaisCrédit Lyonnais

    Crdit Lyonnais is a French bank. It was, at a point, the largest French bank, and it was state-owned....
    , a major bank in Paris, system administrators ran into the burning building to rescue backup tapes because they didn't have offsite copies. Crucial bank archives and computer data were lost.
  • Privacy Rights ClearinghousePrivacy Rights Clearinghouse

    Privacy Rights Clearinghouse is an American 501 non-profit organization devoted to upholding the right to privacy and protec...
     has documented 16 instances of stolen or lost backup tapes (among major organizations) in 2005 & 2006. Affected organizations included Bank of AmericaBank of America

    Bank of America , headquartered in Charlotte, North Carolina, is the largest commercial bank in the United States measured ...
    , Ameritrade, CitigroupCitigroup

    Citigroup Inc. is a major American financial services company based in New York City....
    , and Time WarnerTime Warner

    Time Warner Inc. or TimeWarner is a massive American media conglomerate with major Internet, publishing, film, teleco...
    .
  • On 3 January 2008, an email server crashed at TeliaSoneraTeliaSonera

    TeliaSonera AB is the dominant telephone company and mobile network operator in Sweden and Finland, and is also active in ot...
    , a major Nordic telecom company and internet service providerFacts About Internet service provider

    An Internet service provider is a business or organization that sells to consumers access to the Internet and related servic...
    . It was subsequently discovered that the last serviceable backup set was from 15 December 2007. Three hundred thousand customer email accounts were affected.

See also

  • Glossary of backup termsGlossary of backup terms

    This page is a glossary of backup terms....
  • Backup softwareBackup software

    Backup software is software designed to backup data for the purpose of having a second copy of an original source in case of...
    • List of backup softwareList of backup software

      This is a list of backup software, software which performs data backups. ...
  • Backup rotation schemeBackup rotation scheme Overview

    A Backup rotation scheme is a method for effectively backing up data where multiple media format are used in the backup proc...
  • Incremental backupIncremental backup

    An incremental backup is a backup method where multiple backups are kept....
  • Computer data storage
  • Data proliferationData proliferation

    Data proliferation refers to the unprecedented amount of data, structured and unstructured, that business and government con...
  • File synchronizationFile synchronization

    File Synchronization in computing is the process of making sure that two or more locations contain the same up-to-date infor...
  • Information repositoryInformation repository

    An information repository is an easy to deploy secondary tier of data storage that can comprise multiple, networked data sto...
  • Disaster recovery and business continuity auditingDisaster recovery and business continuity auditing

    Disaster recovery and business continuity refers to an organizations ability to recover from a disaster and/or unexpected event an...
  • Digital preservationDigital preservation

    Digital preservation refers to the management of digital information over time....
  • Reversible computingReversible computing

    The term reversible computing refers to any computational process that is reversible, i.e., time-invertible, meaning tha...