<?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: how to add the write and alter password with a proc dataset in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957554#M45805</link>
    <description>&lt;P&gt;Use a slash to change a password.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data T1(pw=R);
 A=1;
run;

proc datasets nolist ;
  modify T1(write=R/W alter=R/A read=R/RR);
  run;
quit;

proc print data=T1(read=RR);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jan 2025 11:30:07 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2025-01-29T11:30:07Z</dc:date>
    <item>
      <title>how to add the write and alter password with a proc dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957373#M45803</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The old SAS code was :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data out1a.jourouvrableprovds (write=po alter=po);
set in1.jourouvrableprovds  (write=po alter=po);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now If I want to use this instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets;
copy in=in1 out=out1a;
select jourouvrableprovds;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Where do we put the write and alter access&amp;nbsp; with the proc datasets;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 22:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957373#M45803</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2025-01-27T22:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to add the write and alter password with a proc dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957428#M45804</link>
      <description>&lt;P&gt;Is this what you are looking for ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname in1 v9 'c:\temp\';
libname out1a v9 'c:\temp\z';




proc datasets library=out1a nowarn;
copy in=in1 out=out1a;
select jourouvrableprovds;
run;
modify jourouvrableprovds(write=po alter=po read=xx);
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jan 2025 03:12:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957428#M45804</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-01-28T03:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to add the write and alter password with a proc dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957554#M45805</link>
      <description>&lt;P&gt;Use a slash to change a password.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data T1(pw=R);
 A=1;
run;

proc datasets nolist ;
  modify T1(write=R/W alter=R/A read=R/RR);
  run;
quit;

proc print data=T1(read=RR);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 11:30:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-add-the-write-and-alter-password-with-a-proc-dataset/m-p/957554#M45805</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2025-01-29T11:30:07Z</dc:date>
    </item>
  </channel>
</rss>

