Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1.32 KB

data-archiving-210104b.md

File metadata and controls

21 lines (13 loc) · 1.32 KB

Data Archiving

Data archiving is used to extract data from the database, write it to archive files and delete the data from the database tables.

Data archiving is needed for data volume management. Usually, you want to remove data from the database which is not needed for your daily business anymore, but needs to be retained.

Steps to implement a data archiving solution

  1. Create a storage manager implementation to store the archive data to an external storage system

  2. Select data and write it to archive files

  3. Delete data from the database

  4. Read archived data

  5. Reload archived data into the database

  6. Create a definition for archiving an object in ADT

  7. Perform data archiving

For data archiving in ABAP Cloud the Archive Development Kit ( ADK) provides released APIs or interfaces for all of these steps, which can be used in your implementation to archive content of your own tables.