Login| Sign Up| Help| Contact|

Patent Searching and Data


Title:
STATIC DATA MASKING
Document Type and Number:
WIPO Patent Application WO/2020/096823
Kind Code:
A1
Abstract:
The static data masking system may perform one or more operations including unbinding tables in a database, evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query, adding a temporary key column with unique values to the candidate table, generating a temporary table including the temporary key column and an empty masked column, generating masked values for the particular column at a client, and populating the masked values for the particular column in the empty masked column of the temporary table.

Inventors:
DUBISHAR WILLIAM B (US)
MCCLENAHAN JILL M (US)
GRANET ESTIENNE G (US)
YOSSEF OREN (US)
WELTON JEFFREY D (US)
Application Number:
PCT/US2019/058687
Publication Date:
May 14, 2020
Filing Date:
October 30, 2019
Export Citation:
Click for automatic bibliography generation   Help
Assignee:
MICROSOFT TECHNOLOGY LICENSING LLC (US)
International Classes:
G06F21/62; G06F16/20; H04W12/02
Foreign References:
US20080065665A12008-03-13
US20150113656A12015-04-23
US20140123303A12014-05-01
Attorney, Agent or Firm:
MINHAS, Sandip S. et al. (US)
Download PDF:
Claims:
Claims

1. A physical article of manufacture including one or more tangible computer- readable storage media, encoding computer-executable instructions for executing on a computer system a computer process, the computer process comprising:

unbinding tables in a database;

evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query;

adding a temporary key column with unique values to the candidate table;

generating a temporary table including the temporary key column and an empty masked column;

generating masked values for the particular column at a client; and

populating the masked values for the particular column in the empty masked column of the temporary table.

2. The physical article of manufacture of claim 1, wherein the computer process further comprising performing a query operation to restore masked values from the temporary table to the particular column of the candidate table.

3. The physical article of manufacture of claim 2, wherein the computer process further comprising deleting the temporary table and the temporary key column from the candidate table.

4. The physical article of manufacture of claim 3, wherein the computer process further comprising restoring keys, constraints, and indexes of the database.

5. The physical article of manufacture of claim 1, wherein the computer process further comprising:

determining that a masking operation on another column of the candidate table is a simple masking operation that can be completed using a query, the another column being different than the particular column; and

in response to the determination, performing a query operation to complete the simple masking operation.

6. The physical article of manufacture of claim 1, wherein the computer process further comprising saving schema of the database using before unbinding the tables in the database.

7. A method of providing a static data masking, the method comprising:

evaluating masking operations on tables of a database to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query;

adding a temporary key column with unique values to the candidate table;

generating a temporary table including the temporary key column and an empty masked column;

generating masked values for the particular column at a client; and

populating the masked values for the particular column in the empty masked column of the temporary table.

8. The method of claim 7, further comprising unbinding the tables before evaluating the masking operations.

9. The method of claim 8, further comprising performing a query operation to restore masked values from the temporary table to the particular column of the candidate table.

10. The method of claim 9, further comprising restoring keys, constraints, and indexes of the database.

11. The method of claim 7, further comprising:

determining that a masking operation on another column of the candidate table is a simple masking operation that can be completed using a query, the another column being different than the particular column; and

in response to the determination, performing a query operation to complete the simple masking operation.

12. The method of claim 7, further comprising cloning the database using before unbinding the tables in the database using a backup operation and a restore operation.

13. In a computing environment, a system comprising:

memory;

one or more processor units;

a static data masking system stored in the memory and executable by the one or more processor units, the static data masking system encoding computer-executable instructions on the memory for executing on the one or more processor units a computer process, the computer process comprising:

unbinding tables in a database;

evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query;

adding a temporary key column with unique values to the candidate table;

generating a temporary table including the temporary key column and an empty masked column;

generating masked values for the particular column at a client; and

populating the masked values for the particular column in the empty masked column of the temporary table.

14. The system of claim 13, wherein the computer process further comprising performing a query operation to restore masked values from the temporary table to the particular column of the candidate table.

15. The system of claim 13, wherein the computer process further comprising restoring keys, constraints, and indexes of the database.

Description:
STATIC DATA MASKING

Background

[0001] Static data masking is a privacy feature that enables users to anonymize their database. The anonymization happens at the column level. Data is erased and replaced with fake data. Static data masking is a one-way operation. Once a database has been masked, it is no longer possible to restore the database to its state before masking. Users are responsible for choosing which columns they wish to anonymize as well as the configurations for these columns.

Summary

[0002] Implementations described herein disclose a system for static data masking. The static data masking system may perform one or more operations including unbinding tables in a database, evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query, adding a temporary key column with unique values to the candidate table, generating a temporary table including the temporary key column and an empty masked column, generating masked values for the particular column at a client, and populating the masked values for the particular column in the empty masked column of the temporary table.

[0003] This Summary is provided to introduce a selection of concepts in a simplified form that are further described below in the Detailed Description. This

Summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended to be used to limit the scope of the claimed subject matter.

[0004] Other implementations are also described and recited herein.

Brief Descriptions of the Drawings

[0005] FIG. 1 illustrates an example implementation of a static data masking system disclosed herein.

[0006] FIG. 2 illustrates example data flow diagram for the static data masking system disclosed herein.

[0007] FIG. 3 illustrates example operations of the static data masking system disclosed herein.

[0008] FIG. 4 illustrates additional example operations of the static data masking system disclosed herein. [0009] FIG. 5 illustrates an example computing system that may be useful in implementing the described technology.

Detailed Descriptions

[0010] At the core of static data masking lies the concept of a masking function. A masking function is an algorithm that is used to generate data. It can be modeled as a function, e.g. a mathematical operation or series of mathematical operations that take a column (a set of N columns) as an input and returns a column (a set of N columns) as an output. Masking functions are responsible for implementing the three ideas mentioned earlier. Poorly combined, they can deprive the database of its structure or leave loopholes that can be exploited for the identification of masked records.

[0011] A static data masking system disclosed herein allows users to use one or more of such masking functions to mask data in one or more columns in a database while still preserving the relations between the various fields as well as keeping the constraints of the database. Specifically, an implementation of the static data masking system allows masking the data in the selected columns such that the statistical nature of the data in the database is still preserved.

[0012] FIG. 1 illustrates an implementation of a static data masking system 100 that allows users to request masking data in one or more fields of a database 150. For example, the database 150 may be a patient database with tables storing information about the patients’ names and other personally identifiable information (PII) and various non-PII. The database 150 may be stored on a cloud server, an on-premise server, a network-based server that is accessible over the Internet, etc.

[0013] The technology disclosed herein provides technical advantages to computers and computing technology. Specifically, the static data masking system 100 improves efficiency and functioning of database systems by allowing complex masking

configurations to be applied to columns of data in an efficient manner. For example, determining that some of the masking configurations are implemented on server side and other masking configurations are implemented on the client side reduces the network traffic, thus making efficient use of computing networks, thus improving the technical operations of the database and the networks connecting such databases.

[0014] A client 102 may be configured to allow a user to use a data masking user interface (UI) 120 to request various masking operations. For example, a user may request masking one or more of the PII from the database 150. Alternatively, a user may also use a command line instruction to request a masking operation. In one implementation, the client 102 may have access to the configuration and the shape of the data in the database 150. The client 102 may include a masking configuration generator 104 that

communicates with the data masking UI 120 to allow a user to generate masking configuration for various columns of the database 150. A schema modeling module 106 may model and store the schema of the database 150, whereas a schema validator 108 analyzes the masking configuration to ensure that any of the constraints as per the schema are not invalid.

[0015] The client 102 communicates the request for the masking operation to a data masking engine 110. The data-masking engine 110 may be implemented on the server side where it can access the database 150 and work with the client 102 to affect the masking operations requested by the client 102.

[0016] Upon receiving the request for the masking operation, the data-masking engine 110 creates a clone database 152 of the database 150 and stores the clone database 152. This allows the client to preserve continuity of its operations that are accessing the data from the database 152. If the database 150 is an on-premise database, a combination of backup and restore commands may be sued to generate the clone database 152. If the database 150 is cloud based, a new database as a copy of the database 150 may be created. Once the clone database 152 is created, one or more of the masking operations by the data masking engine 110 may be performed on the clone database 152. As a result, the client is able to continue using the database 150 in normal course of business.

[0017] Subsequently, the data masking engine 110 copies schema 154 of the database 150 and communicates it to the client 102, where it may be stored. The schema 154 may include file system information about tables of the database 150, columns of the table, relations between tables, constraints on various columns of the tables, etc. The schema 154 may be used to validate one or more masking operation requests from the client 102. For example, if the schema identifies a column with a name SSN (SSN column 160) as a primary key, which typically includes data that is unique for each record or row, if a masking operation requests the SSN column 160 to be filled with same value, such request will result in data in SSN column 160 that does not meet the constraint of the values being unique. In such as case, a schema validator 108 may reject that particular masking operation request.

[0018] Once the schema 154 is saved, the data masking engine 110 drops all the constraints on the clone database 152. For example, the data masking engine 110 deletes the constraints of the clone database 152. Thus, if the SSN column 160 was constrained to have values that are unique, after dropping the constraint, the values in the SSN column 160 may be non-unique. This allows manipulating data at one or more intermediate states to affect the masking operation on the clone database 152.

[0019] Subsequently, the data masking engine 110 reviews the database table by table based on the masking operations requested by the client 102. For example, the client 102 may have requested to set all values of the SSN column 160 to a NULL value. An alternate masking operation request from the client 102 may be to change the values of the SSN column 160 data to a random number. Alternatively, the client 102 may have requested to shuffle all values of a pName column 162 that has names of the patients stored therein.

[0020] The data masking engine 110 determines the type of masking operations requested by the client 102 for various columns. Specifically, the data masking engine 110 determines which of the masking operations can be performed on the server side with a simple query and which of the masking operations are more complex and therefore requires additional processing of the data on the client side.

[0021] For example, the data masking engine 110 may determine that the masking operation required on column A 164 merely requires each value of column A 164 to be changed to NULL. In this case, the data masking engine 110 may issue a command to make such change in all values of column A 164. In one implementation, the command to make such a change may be a structured query language (SQL) command which may be used to query, insert, update, or modify data in tables of a relational database.

[0022] In one implementation, determining which masking operations can be implemented simply using an SQL command compared to the complex masking operations that require processing on the client side is determined based on the type of the masking operations. For example, in one implementation, each of various types of masking operations available to the client 102 may be categorized as being a simple masking operation or a complex masking operation.

[0023] On the other hand, the data masking engine 110 may determine that the masking operation on a column B 166 is a complex operation that requires additional processing on the client side. For example, the masking operation for column B 166 may be a random masking operation, which requires that pre-masking values of column B 166 are replaced with randomly generated values.

[0024] For a column with a complex masking operation, the data masking engine 110 generates a temporary column 168. The temporary column is populated with unique values. For example, in one implementation, the unique values in the temporary column may be globally unique identifier (GUID) values that may have a 16-byte value.

[0025] Subsequently, based on the instruction from the client 102, the data masking engine 110 determines if the original value of the column B 166 is desired or not. If so, the values of the column B 166 is pulled to the client side. Once the data from the column B 166 is communicated to the client side, the desired masking operation is performed on each value of the column B 166. In one implementation, as each value Bi l66i of the column B 166 is received at the client side, its value is changed as per the masking operation. The changed value is communicated back to the server side and stored in a masked version of column B 166, represented by a masked column B a l66 a.

[0026] A copy of the temporary column 168, represented by column temp a l68 a , is used to associate the values of the masked column B a l66 a in a temporary table 170.

Subsequently an SQL command may be issued to insert the masked values from the masked column B a l66 a into the column B 166. Once the column B 166 is updated, table 170, including the temporary column 168 and l68 a , is deleted. Subsequently, all the constraints on the table 140 are added back using the schema 154.

[0027] FIG. 2 illustrates example data flow diagram 200 for the static data masking system disclosed herein. Specifically, the data flow diagram 200 illustrates the flow of information between a client 202, a source database 204, and a masked database 206. The client 202 may be a computing device, such as the computing device disclosed in FIG. 5 below that may be used for hosting an application programming interface (API) to a data masking system. In one implementation, a user may access the data masking API via a GUI that allows the user to select various masking operations to be performed on one or more columns of the source database 204. Thus, the API exposes the listing of the columns and one or more constraints on its masking to the user via such a GUI.

[0028] In one implementation, at 212 the client 202 may issue a transact-SQL (TSQL) command to back up the database 204. In response at 214, the source database 204 is backed up to a server drive 208. Subsequently, an operation 216 retrieves the file system information of the source database at the client. An operation 218 sends a restore command to restore the backed up database as a new database. Together the backup command 212 and the restore command 218 are used to generate a clone of the source database 204. In response to the restore command 218, at 220 the masked database 220 is created and the backed up data from the server 222 is restored to the masked database 220 at an operation 222. [0029] An operation 224 sends a command to the masked database to get the schema of the masked database. In one implementation, the command may be a data-tier application (DAC) command and in return the schema is sent as a DAC pack (dacpac) at an operation 226 to the client 202. Once the schema is received, at operation 228 the client may issue a command to the masked database 206 to drop all keys, constraints and indexes.

[0030] Subsequently, a set of masking operations 210 are performed on the masked database 206 without all keys, constraints and indexes. For all masking operations that may be performed by a simple SQL command, an operation 230 sends a TSQL update command to the masked database 206. For example, if all values in a column in the masked database 206 is merely to be replaced by a NULL value, the operation 230 may initiate a TSQL update command to complete such an SQL capable masking operation.

[0031] For columns where complex masking operations are required, such as masking operations that may not be completed by an SQL command, an operation 232 sends a TSQL select command to retrieve data from that column. In one implementation, the data from the given column may be full, however, a set of columns chosen to have data retrieved therefrom may vary from none to all. In response, an operation 234

communicates such data to the client 202. At an operation 236 the retrieved data is processed to compete the complex masking operation at the client 202. Once the values for the column are updated with the complex masking operation, at an operation 238, the masked data for the given column are inserted to a temporary table with unique identification values, such as GUIDs, that are also added to a table of the masked database 206. Subsequently, a TSQL command is executed at an operation 240 to stitch or combine the masked values from the temporary table to the original table of the masked database 206. Once all of the masking operations 210 are complete, an operation 242 recreates all the keys, constraints, and indexes of the masked database 206. For example, the operation 242 may use dacpac to recreate all the keys, constraints, and indexes of the masked database 206.

[0032] FIG. 3 illustrates operations 300 of the static data masking system disclosed herein. An operation 302 receives n masking operations for a database from a user. For example, the user may use a GUI to specify the n masking operations. In one

implementation, an application used by the user may validate the masking operations to ensure that they do not violate any constraints of the database to be masked. An operation 304 clones the database to generate a masked database. For example, the cloning operation may be executed using a combination of backup/restore commands. An operation 306 saves the schema of the masked database. Once the masked database schema is saved, an operation 308 drops the constraints on the masked database.

[0033] Now the masked database is ready for performing various masking operations. An operation 310 evaluates a masking configuration to determine if it is an SQL capable masking operation that may be completed using an SQL command or not. If it determines that the masking operation can be completed using as SQL command, an operation 312 initiates an SQL command to complete such masking. Example of such SQL capable masking operation include a single value masking, a scramble masking, NULL masking, etc. On the other hand, examples of masking operations that are complex and therefore cannot be completed by an SQL command include a bag masking operation, an encryption masking operation, a random masking operation, a histogram masking operation, etc.

[0034] On the other hand, if the operation 310 determines that the masking operation on a column is complex in that it cannot be completed by an SQL command, an operation 314 fetches the data from the column to the client side for further processing. Such client side processing operation 314 is disclosed in further detail in FIG. 4 below. Operations 312 and 322 increase the index value and operations 316 and 318 determine if there are any additional of the n masking operations to be completed. Once all masking operations are completed, an operation 330 restores the keys, constraints, and indexes of the masked database.

[0035] FIG. 4 illustrates operations 400 of the static data masking system disclosed herein for complex masking on a column. An operation 402 adds a temporary key column to the table that includes the column requiring complex masking. The temporary key column may include unique key values such as GUID values and referred to as a GUID column. For example, for a candidate table with columns for SSN, pName, and pAddress, if the column SSN is to be masked using complex masking, the new GUID column with unique key values is added such that the candidate table now has four columns, namely SSN, pName, pAddress, and GUID. The GUID column includes values that are unique for each row.

[0036] An operation 404 creates a temporary table with a copy of the temporary key column and an empty column to store the masked values. The temporary keys may be GUIDs. Thus, the temporary table has two columns, namely the temporary key and maskedSSN. An operation 406 communicates the values of the column to be masked, in this example, column SSN, to the client. An operation 408 performs the complex masking operation on the values of the column SSN. The masked values are the column SSN are communicated back to the masked database at operation 410. The masked values are added to the empty column, namely the maskedSSN column, of the temporary table at operation 412. Subsequently an operation 414 performs an SQL operation to add the masked values from the maskedSSN column of the temporary table to the SSN column of the candidate table using the GUID from each of the temporary table and the candidate table as the key. An operation 416 deletes the temporary table and the GUID column from the candidate table.

[0037] FIG. 5 illustrates an example system 500 that may be useful in implementing the multi-modality video recognition system disclosed herein. The example hardware and operating environment of FIG. 5 for implementing the described technology includes a computing device, such as a general-purpose computing device in the form of a computer 20, a mobile telephone, a personal data assistant (PDA), a tablet, smart watch, gaming remote, or other type of computing device. In the implementation of FIG. 5, for example, the computer 20 includes a processing unit 21, a system memory 22, and a system bus 23 that operatively couples various system components including the system memory to the processing unit 21. There may be only one or there may be more than one processing unit 21, such that the processor of the computer 20 comprises a single central-processing unit (CPU), or a plurality of processing units, commonly referred to as a parallel processing environment. The computer 20 may be a conventional computer, a distributed computer, or any other type of computer; the implementations are not so limited.

[0038] The system bus 23 may be any of several types of bus structures including a memory bus or memory controller, a peripheral bus, a switched fabric, point-to-point connections, and a local bus using any of a variety of bus architectures. The system memory may also be referred to as simply the memory, and includes read only memory (ROM) 24 and random access memory (RAM) 25. A basic input/output system (BIOS) 26, containing the basic routines that help to transfer information between elements within the computer 20, such as during start-up, is stored in ROM 24. The computer 20 further includes a hard disk drive 27 for reading from and writing to a hard disk, not shown, a magnetic disk drive 28 for reading from or writing to a removable magnetic disk 29, and an optical disk drive 30 for reading from or writing to a removable optical disk 31 such as a CD ROM, DVD, or other optical media.

[0039] The hard disk drive 27, magnetic disk drive 28, and optical disk drive 30 are connected to the system bus 23 by a hard disk drive interface 32, a magnetic disk drive interface 33, and an optical disk drive interface 34, respectively. The drives and their associated tangible computer-readable media provide non-volatile storage of computer- readable instructions, data structures, program modules and other data for the computer 20. It should be appreciated by those skilled in the art that any type of tangible computer- readable media may be used in the example operating environment.

[0040] A number of program modules may be stored on the hard disk drive 27, magnetic disk 28, optical disk 30, ROM 24, or RAM 25, including an operating system 35, one or more application programs 36, other program modules 37, and program data 38. A user may generate reminders on the personal computer 20 through input devices such as a keyboard 40 and pointing device 42. Other input devices (not shown) may include a microphone (e.g., for voice input), a camera (e.g., for a natural user interface (NUI)), a joystick, a game pad, a satellite dish, a scanner, or the like. These and other input devices are often connected to the processing unit 21 through a serial port interface 46 that is coupled to the system bus 23, but may be connected by other interfaces, such as a parallel port, game port, or a universal serial bus (USB) (not shown). A monitor 47 or other type of display device is also connected to the system bus 23 via an interface, such as a video adapter 48. In addition to the monitor, computers typically include other peripheral output devices (not shown), such as speakers and printers.

[0041] The computer 20 may operate in a networked environment using logical connections to one or more remote computers, such as remote computer 49. These logical connections are achieved by a communication device coupled to or a part of the computer 20; the implementations are not limited to a particular type of communications device. The remote computer 49 may be another computer, a server, a router, a network PC, a client, a peer device or other common network node, and typically includes many or all of the elements described above relative to the computer 20. The logical connections depicted in FIG. 10 include a local-area network (LAN) 51 and a wide-area network (WAN) 52. Such networking environments are commonplace in office networks, enterprise-wide computer networks, intranets and the Internet, which are all types of networks.

[0042] When used in a LAN-networking environment, the computer 20 is connected to the local network 51 through a network interface or adapter 53, which is one type of communications device. When used in a WAN-networking environment, the computer 20 typically includes a modem 54, a network adapter, a type of communications device, or any other type of communications device for establishing communications over the wide area network 52. The modem 54, which may be internal or external, is connected to the system bus 23 via the serial port interface 46. In a networked environment, program engines depicted relative to the personal computer 20, or portions thereof, may be stored in the remote memory storage device. It is appreciated that the network connections shown are examples and other means of communications devices for establishing a

communications link between the computers may be used.

[0043] In an example implementation, software or firmware instructions for providing attestable and destructible device identity may be stored in memory 22 and/or storage devices 29 or 31 and processed by the processing unit 21. One or more ML, NLP, or DLP models disclosed herein may be stored in memory 22 and/or storage devices 29 or 31 as persistent datastores. For example, a static data masking system 502 may be implemented on the computer 20 as an application program 36 (alternatively, the static data masking system 502 may be implemented on a server or in a cloud environment).

The static data masking system 502 may utilize one of more of the processing unit 21, the memory 22, the system bus 23, and other components of the personal computer 20.

[0044] In contrast to tangible computer-readable storage media, intangible computer-readable communication signals may embody computer readable instructions, data structures, program modules or other data resident in a modulated data signal, such as a carrier wave or other signal transport mechanism. The term "modulated data signal" means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example, and not limitation, intangible communication signals include wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media.

[0045] An implementation disclosed herein provides a system for static data masking. The static data masking system may perform one or more operations including unbinding tables in a database, evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query, adding a temporary key column with unique values to the candidate table, generating a temporary table including the temporary key column and an empty masked column, generating masked values for the particular column at a client, and populating the masked values for the particular column in the empty masked column of the temporary table. In an alternative implementation, the computer process further includes performing a query operation to restore masked values from the temporary table to the particular column of the candidate table.

[0046] Yet alternatively, the computer process further includes deleting the temporary table and the temporary key column from the candidate table. Alternatively, the computer process further includes restoring keys, constraints, and indexes of the database. Yet alternatively, the computer process includes determining that a masking operation on another column of the candidate table is a simple masking operation that can be completed using a query, the another column being different than the particular column and in response to the determination, performing a query operation to complete the simple masking operation.

[0047] In one implementation, the computer process further includes cloning the database using before unbinding the tables in the database. Alternatively, the computer process further includes saving schema of the database using before unbinding the tables in the database. In one implementation, the complex masking operation is at least one of a bag masking operation, an encryption masking operation, a random masking operation, a histogram masking operation.

[0048] A method of providing a static data masking includes evaluating masking operations on tables of a database to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query, adding a temporary key column with unique values to the candidate table, generating a temporary table including the temporary key column and an empty masked column, generating masked values for the particular column at a client, and populating the masked values for the particular column in the empty masked column of the temporary table. Alternatively, the method further includes unbinding the tables before evaluating the masking operations.

[0049] An alternative implementation further includes performing a query operation to restore masked values from the temporary table to the particular column of the candidate table. Yet alternatively, the method further includes restoring keys, constraints, and indexes of the database. Alternatively, the method further includes determining that a masking operation on another column of the candidate table is a simple masking operation that can be completed using a query, the another column being different than the particular column and in response to the determination, performing a query operation to complete the simple masking operation.

[0050] In another implementation, the method further includes cloning the database using before unbinding the tables in the database using a backup operation and a restore operation. Yet alternatively, the complex masking operation is at least one of a bag masking operation, an encryption masking operation, a random masking operation, a histogram masking operation.

[0051] A system disclosed herein operates in a computing environment and includes a memory, one or more processor units, and a data masking system stored in the memory and executable by the one or more processor units, the static data masking system encoding computer-executable instructions on the memory for executing on the one or more processor units a computer process, the computer process including unbinding tables in a database, evaluating masking operations on the tables to determine that at least one masking operation on a particular column of a candidate table is a complex masking operation that cannot be completed using a query, adding a temporary key column with unique values to the candidate table, generating a temporary table including the temporary key column and an empty masked column, generating masked values for the particular column at a client, and populating the masked values for the particular column in the empty masked column of the temporary table.

[0052] In an alternative implementation, the computer process further includes performing a query operation to restore masked values from the temporary table to the particular column of the candidate table. Alternatively, the computer process further comprising deleting the temporary table and the temporary key column from the candidate table. Yet alternatively, the computer process further comprising restoring keys, constraints, and indexes of the database. In one implementation, the complex masking operation is at least one of a bag masking operation, an encryption masking operation, a random masking operation, a histogram masking operation.

[0053] The implementations described herein are implemented as logical steps in one or more computer systems. The logical operations may be implemented (1) as a sequence of processor-implemented steps executing in one or more computer systems and (2) as interconnected machine or circuit modules within one or more computer systems. The implementation is a matter of choice, dependent on the performance requirements of the computer system being utilized. Accordingly, the logical operations making up the implementations described herein are referred to variously as operations, steps, objects, or modules. Furthermore, it should be understood that logical operations may be performed in any order, unless explicitly claimed otherwise or a specific order is inherently necessitated by the claim language.

[0054] The above specification, examples, and data provide a complete description of the structure and use of exemplary embodiments of the invention. Since many implementations of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended. Furthermore, structural features of the different embodiments may be combined in yet another implementation without departing from the recited claims.