<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: code needed for masking or replacing the sensitive column in dataset while copying from source in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607969#M176850</link>
    <description>&lt;P&gt;If integrity is not a requirement, just set the fields to missing.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Nov 2019 06:20:31 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-11-28T06:20:31Z</dc:date>
    <item>
      <title>code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607653#M176698</link>
      <description>&lt;P&gt;I am going to copy a dataset from one location to another in which it has sensitive information in some columns so in my script while copying the sensitive&amp;nbsp;column data should be masked or replaced with any random series r names like test1, test2,...testn&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname loc1 "destination path";
libname loc2 "source path";
data loc1.datasetname_masked;
set loc2.datasetname_sensitive;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in above datasetname_sensitive have a column(field) called&amp;nbsp;phone_number the entries in field phone_number should be replaced with test1, test2. test3... testn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the dataset is like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="current.JPG" style="width: 299px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34281i09074CE98FB9FB67/image-size/large?v=v2&amp;amp;px=999" role="button" title="current.JPG" alt="current.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need like this after copying with Phone_number field replaced with masking text(any)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="result.JPG" style="width: 298px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34282iF51012929C47426E/image-size/large?v=v2&amp;amp;px=999" role="button" title="result.JPG" alt="result.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;the sensitive field can have any values eg:number, text or any special characters&amp;nbsp;(here number)&amp;nbsp;and it can be replaced with any random text say XXX, yyyy(my motive is to just mask) the entries&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 12:20:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607653#M176698</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-27T12:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607654#M176699</link>
      <description>&lt;P&gt;Is this both numeric and character values that you want to mask?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An obvious solution would be simply to change the value of the variable you want to mask?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also create formats to mask your values like below. Be aware that this simply formats the values, but does not change the underlying value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    value $ cmask other = 'XXXX';
    value   nmask other = 'XXXX';
run;

data test;
input cvar1 $ cvar2 $ nvar1 nvar2;
datalines;
a b 1 2
c d 3 4
e f 5 6
;

data want;
    set test;
    format cvar2 $cmask. nvar2 nmask.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;cvar1 cvar2 nvar1 nvar2 
a     XXXX  1     XXXX 
c     XXXX  3     XXXX 
e     XXXX  5     XXXX &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 12:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607654#M176699</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-27T12:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607658#M176702</link>
      <description>&lt;P&gt;Your "phone number" seems to be a number, as it is displayed right-justified, so you can only replace it with a number, not a string.&lt;/P&gt;
&lt;P&gt;Do you need to mask the values, or do you need to anonymize them in a way so that relations are kept intact? If the later, you need to create a lookup table from all existing values so that you replace consistently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a side note, do not store real telephone numbers as numbers, store them as character. Phone numbers can have leading zeroes or special characters ("+" for international), and with extensions they can easily exceed the available precision of numbers in SAS (and other software that uses 8-byte real storage for numbers).&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 12:32:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607658#M176702</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-11-27T12:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607806#M176760</link>
      <description>&lt;P&gt;Maybe this will be useful? Especially if you want to maintain integrity of the data, ie Phone Number XYZ is the same everywhere its encountered.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://gist.github.com/statgeek/fd94b0b6e78815430c1340e8c19f8644" target="_blank"&gt;https://gist.github.com/statgeek/fd94b0b6e78815430c1340e8c19f8644&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 18:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607806#M176760</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-27T18:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607948#M176836</link>
      <description>&lt;P&gt;The phone number field is just an example and I have many other&amp;nbsp;fields like name, address, relationship status and&amp;nbsp;all&amp;nbsp;personal information of my clients which I need to be masked while copying the dataset to other users in my team. I don't want to show these details to them and they wont need these fields as well. so while copying the dataset to them I need to give a copy of the SAS dataset in which the sensitive fields are masked or replaced. this is my actual need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help in this.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 03:57:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607948#M176836</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-28T03:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607951#M176837</link>
      <description>&lt;P&gt;Thanks Draycut,&lt;/P&gt;&lt;P&gt;The phone number field is just an example and I have many other&amp;nbsp;fields like name, address, relationship status and&amp;nbsp;all&amp;nbsp;personal information of my clients which I need to be masked while copying the dataset to other users in my team. I don't want to show these details to them and they wont need these fields as well. so while copying the dataset to them I need to give a copy of the SAS dataset in which the sensitive fields are masked or replaced. this is my actual need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&amp;nbsp;for your help in this.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 03:59:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607951#M176837</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-28T03:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607952#M176838</link>
      <description>&lt;P&gt;Thanks Reeza for your response, I will check it out &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 04:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607952#M176838</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-28T04:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607969#M176850</link>
      <description>&lt;P&gt;If integrity is not a requirement, just set the fields to missing.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 06:20:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/607969#M176850</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-11-28T06:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608043#M176897</link>
      <description>&lt;P&gt;Try MD5() function&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 12:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608043#M176897</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-11-28T12:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608090#M176920</link>
      <description>That's reversible because phone numbers have a specified format that's known to everyone as do names to some degree.</description>
      <pubDate>Thu, 28 Nov 2019 17:07:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608090#M176920</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-28T17:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608181#M176962</link>
      <description>&lt;P&gt;Its working fine for single dataset.&amp;nbsp;That's Great.&amp;nbsp;I have a&amp;nbsp;doubt here I am going to create a single common code for copying any dataset from one loc to another. i.e dataset1, dataset2,dataset3 and so on.&amp;nbsp; dataset1 have 2 fields to be&amp;nbsp;masked eg:&amp;nbsp;phone_num and name. dataset2 have 1field to masked say date of birth and dataset3 has 3fields to be masked eg: mobile_no, gender and salary to be masked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;its is possible to use format condition in if statement,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
        value $ mask other = 'ZZZZ';
run;

data want;
set test;
format field1_dataset1 $mask. field2_dataset1 $mask.  field1_dataset2 $mask.  field1_dataset3 $mask. field2_dataset3 $mask. field3_dataset3 $mask.;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;how to use one format function for all fields conditions i.e. if the field is present it should be masked else it wont.&lt;/P&gt;&lt;P&gt;but in the above code it create a new field in the copied dataset in which it is not present,&amp;nbsp; can you help me in this&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 07:40:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608181#M176962</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-29T07:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608182#M176963</link>
      <description>&lt;P&gt;The variables you want to format here, are they all character, or a mix of numeric and character?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 07:51:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608182#M176963</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-29T07:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608186#M176966</link>
      <description>&lt;P&gt;One way to get around this is to use &lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p0xdkenol7pi1cn14p0iq38shax4.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;PROC DATASETS&lt;/A&gt;&amp;nbsp;to copy the data sets and apply the formats. PROC DATASETS can not create new variables, it only reads and edits the descriptor portion of a data set. Not the actual data. Therefore, you will simply get a warning for the varables not present in the data set being processed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is something like this what you are after? Obviously, this can be automated further, but I want to make sure that this is actually what you want first &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data data1;
input var1 phone_num $ name $;
datalines;
1 1234 Sampson
;

data data2;
input var1 var2 dob :date9.;
format dob date9.;
datalines;
1 2 01jan2010
;

data data3;
input var1 $ var2 mobile_no gender $ salary 8.;
datalines;
a 1 123 M 10000
;

libname to "PathHere";

proc format;
    value $ cmask (default=12) other = 'ZZZZ';
    value   nmask (default=12) other = 'ZZZZ';
run;

proc datasets nolist lib=to;
   copy in=work out=to memtype=data;
      select data1 data2 data3;
   modify data1;
       format phone_num $cmask. name $cmask. gender $cmask. dob nmask. mobile_no nmask. salary nmask.;
   modify data2;
       format phone_num $cmask. name $cmask. gender $cmask. dob nmask. mobile_no nmask. salary nmask.;
   modify data3;
       format phone_num $cmask. name $cmask. gender $cmask. dob nmask. mobile_no nmask. salary nmask.;
run;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, do you want to copy &lt;EM&gt;all&amp;nbsp;&lt;/EM&gt;data sets in a library or only some of them?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 08:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608186#M176966</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-29T08:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608194#M176968</link>
      <description>&lt;P&gt;yes it is a mix of numeric and character type&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 09:18:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608194#M176968</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-29T09:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608197#M176969</link>
      <description>&lt;P&gt;Did you try my code below?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 09:23:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608197#M176969</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-29T09:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608199#M176970</link>
      <description>&lt;P&gt;let me explain more in&amp;nbsp;detail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a&amp;nbsp;location where many sas dataset are present, let say production location X.&amp;nbsp;These datasets are being used by my whole team. So they will copy the dataset from X to their location say Y. so I am writing a code to do this. so while doing this my code needs to mask the sensitive information in all dataset which ever copied. they will&amp;nbsp;use my code to copy datasets. they will just define the source and destination in my code and run. so during copying the sensitive data should me masked.&amp;nbsp;I already identified all the sensitive fields in all datasets which are need to be masked while copying. it contains Character and numeric types only. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 09:28:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608199#M176970</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-29T09:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608200#M176971</link>
      <description>no not yet, I am checking now</description>
      <pubDate>Fri, 29 Nov 2019 09:29:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608200#M176971</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-29T09:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608201#M176972</link>
      <description>&lt;P&gt;I understand that. So will they copy &lt;EM&gt;one&amp;nbsp;&lt;/EM&gt;data set at the time or multiple?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 09:34:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608201#M176972</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-29T09:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608202#M176973</link>
      <description>mostly one. its better to have solution for many.</description>
      <pubDate>Fri, 29 Nov 2019 09:35:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608202#M176973</guid>
      <dc:creator>Kadz_sas1990</dc:creator>
      <dc:date>2019-11-29T09:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: code needed for masking or replacing the sensitive column in dataset while copying from source</title>
      <link>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608203#M176974</link>
      <description>&lt;P&gt;Ok. Did you try my PROC DATASETS code above?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 09:41:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/code-needed-for-masking-or-replacing-the-sensitive-column-in/m-p/608203#M176974</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-29T09:41:20Z</dc:date>
    </item>
  </channel>
</rss>

