These pages cover SQL Clone 4, which is not the latest version. Help for other versions is also available.
Run a Data Masker masking set during image creation
Published 27 February 2018
SQL Clone version 2.5.0 can run Data Masker v6 masking sets on image databases while they are being created. This can be combined with running SQL scripts on the same image.
Clone Agent will attach the image files directly to the SQL Server instance being used to create it (either the instance it came from for an image from SQL Server, or the temporary instance for an image from a backup file).
##########################################################################################
# Create a new SQL Clone data image with a Data Masker masking set.ps1 - version 0.1
# Purpose: Script to create a new SQL Clone data image and run a Data Masker masking set
# on it.
# Warning: Clone Agent will attach the image files directly to the SQL Server instance
# being used to create it (either the instance it came from for an image from SQL
# Server, or the temporary instance for an image from a backup file).
##########################################################################################
$ServerUrl = 'http://sql-clone.example.com:14145' # Set to your Clone server URL
$MachineName = 'WIN201601' # The machine name of the SQL Server instance to create the clones on
$InstanceName = 'SQL2014' # The instance name of the SQL Server instance to create the clones on
$ImageLocation = '\\red-gate\data-images' # Point to the file share we want to use to store the image
$MaskingSetPath = '\\red-gate\masking-sets\clean-pii-data.dmsmaskset' # The path to a masking set
$DatabaseName = 'AdventureWorks' # The name of the database
##########################################################################################
Connect-SqlClone -ServerUrl $ServerUrl
$SqlServerInstance = Get-SqlCloneSqlServerInstance -MachineName $MachineName -InstanceName $InstanceName
$ImageDestination = Get-SqlCloneImageLocation -Path $ImageLocation
$MaskingSet = New-SqlCloneMask -Path $MaskingSetPath
$ImageOperation = New-SqlCloneImage -Name "$DatabaseName-$(Get-Date -Format yyyyMMddHHmmss)-Cleansed" `
-SqlServerInstance $SqlServerInstance `
-DatabaseName $DatabaseName `
-Destination $ImageDestination `
-Modifications $MaskingSet
Wait-SqlCloneOperation -Operation $ImageOperation
View "Create a new SQL Clone data image with a Data Masker masking set.ps1" on GitHub
You can specify any number of modifications in any order:
##########################################################################################
# Create a new SQL Clone data image with both a Data Masker masking set and post-image
# T-SQL.ps1 - version 0.1
# Purpose: Script to create a new SQL Clone data image with both a Data Masker masking set
# and post-image T-SQL on it.
# Warning: Clone Agent will attach the image files directly to the SQL Server instance
# being used to create it (either the instance it came from for an image from SQL
# Server, or the temporary instance for an image from a backup file).
##########################################################################################
$ServerUrl = 'http://sql-clone.example.com:14145' # Set to your Clone server URL
$MachineName = 'WIN201601' # The machine name of the SQL Server instance to create the clones on
$InstanceName = 'SQL2014' # The instance name of the SQL Server instance to create the clones on
$ImageLocation = '\\red-gate\data-images' # Point to the file share we want to use to store the image
$DatabaseName = 'AdventureWorks' # The name of the database
$PermissionsScriptPath = '\\red-gate\data-scripts\change-permissions.sql' # The path to a SQL script
$MaskingSetPath = '\\red-gate\masking-sets\clean-pii-data.dmsmaskset' # The path to a masking set
##########################################################################################
Connect-SqlClone -ServerUrl $ServerUrl
$SqlServerInstance = Get-SqlCloneSqlServerInstance -MachineName $MachineName -InstanceName $InstanceName
$ImageDestination = Get-SqlCloneImageLocation -Path $ImageLocation
$MaskingSet = New-SqlCloneMask -Path $MaskingSetPath
$PermissionsScript = New-SqlCloneSqlScript -Path $PermissionsScriptPath
$ImageOperation = New-SqlCloneImage -Name "$DatabaseName-$(Get-Date -Format yyyyMMddHHmmss)-CleansedAndWithPermissionsChanges" `
-SqlServerInstance $SqlServerInstance `
-DatabaseName $DatabaseName `
-Destination $ImageDestination `
-Modifications @($MaskingSet, $PermissionsScript)
Wait-SqlCloneOperation -Operation $ImageOperation