SQL Clone 3

Help for older versions available.

Run a Data Masker masking set during image creation

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).

  1. # Script to create a new SQL Clone data image and run a Data Masker masking set on it
  2.  
  3. Connect-SqlClone -ServerUrl 'http://sql-clone.example.com:14145'
  4. $SqlServerInstance = Get-SqlCloneSqlServerInstance -MachineName WIN201601 -InstanceName SQL2014
  5. $ImageDestination = Get-SqlCloneImageLocation -Path '\\red-gate\data-images'
  6. $MaskingSet= New-SqlCloneMask -Path \\red-gate\masking-sets\clean-pii-data.dmsmaskset
  7.  
  8. $ImageOperation = New-SqlCloneImage -Name "AdventureWorks-$(Get-Date -Format yyyyMMddHHmmss)-Cleansed" `
  9. -SqlServerInstance $SqlServerInstance `
  10. -DatabaseName 'AdventureWorks' `
  11. -Destination $ImageDestination `
  12. -Modifications $MaskingSet
  13. Wait-SqlCloneOperation -Operation $ImageOperation

You can specify any number of modifications in any order:

  1. # Script to create a new SQL Clone data image with both a Data Masker masking set and post-image T-SQL
  2.  
  3. Connect-SqlClone -ServerUrl 'http://sql-clone.example.com:14145'
  4. $SqlServerInstance = Get-SqlCloneSqlServerInstance -MachineName WIN201601 -InstanceName SQL2014
  5. $ImageDestination = Get-SqlCloneImageLocation -Path '\\red-gate\data-images'
  6.  
  7. $MaskingSet= New-SqlCloneMask -Path \\red-gate\masking-sets\clean-pii-data.dmsmaskset
  8. $PermissionsScript = New-SqlCloneSqlScript -Path \\red-gate\data-scripts\change-permissions.sql
  9.  
  10. $ImageOperation = New-SqlCloneImage -Name "AdventureWorks-$(Get-Date -Format yyyyMMddHHmmss)-CleansedAndWithPermissionsChanges" `
  11. -SqlServerInstance $SqlServerInstance `
  12. -DatabaseName 'AdventureWorks' `
  13. -Destination $ImageDestination `
  14. -Modifications @($MaskingSet, $PermissionsScript)
  15. Wait-SqlCloneOperation -Operation $ImageOperation

Didn't find what you were looking for?