Hi
How can i script to mask name and NRIC of the Rolelist table into Rolelistmasked table.
Below are the columns (Name, NRIC, Address)
I need to mask
CREATE TABLE [dbo].[Rolelist]
(
[Role_List_ID] [int] IDENTITY(1,1) NOT NULL,
[Name] [varchar](100) NOT NULL,
[NRIC] [int] NOT NULL,
[Address] [varchar](100) NOT NULL,
)
After masking, i need to back up all the tables in the database except the Rolelist table.
For this do in need to create script for each table separately?
Thanks