Not logged in - Login


R
e
q
u
e
s
t

a

d
e
m
o
< back

On-The-Fly Data Masking

{TOC}

Introduction

On-the-fly data masking is used when specific conditions in development require data to be masked without using a staging environment. This could be due to the absence of extra space, or a need to move data in real-time.

On-the-fly data masking uses a process known as Extract-Transform-Load (ETL), which takes data from the environment where it resides, and then loads the masked data to the target environment.

This method is mostly used within Agile organizations as it does not interfere with continuous development and provides extra flexibility and speed.

Benefits

Agile organizations that practice continuous deployment do not have the time necessary to create a backup and load it to the golden copy of the database. For this reason, smaller subsets of production data is masked for testing purposes.

It is recommended to employ on-the-fly data masking at the very beginning of a development project, to prevent compliance and security issues.

Description

The process of on-the-fly data masking requires a source database/environment and a target database/environment. Data is read from the source database, masked and inserted into a new table in the target database. Only the target data is masked. The source data remains unchanged. The user specifies the source of the information to be masked, and where the masked data will be loaded.

Instructions

Download a Trial