<?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: removing a password from a library in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198370#M49577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;awesome thanks Kurt that will work for me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jun 2015 21:25:45 GMT</pubDate>
    <dc:creator>merrittr</dc:creator>
    <dc:date>2015-06-23T21:25:45Z</dc:date>
    <item>
      <title>removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198364#M49571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Hi All&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I have a sasl library e:\sas\data\test2 with a bunch of table s in it *.sas7bdat , this table has a password on it I cant seem to get rid of&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;using &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;proc datasets;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; contents data=TEST2.Robm_stir110u_fall_enrolment(pw=&amp;lt;password deleted&amp;gt;);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; modify TEST2 (pw=&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;lt;password deleted&amp;gt;&lt;/SPAN&gt;/);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; contents data=TEST2.Robm_stir110u_fall_enrolment;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;how do i remove it from the library?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 20:27:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198364#M49571</guid>
      <dc:creator>merrittr</dc:creator>
      <dc:date>2015-06-02T20:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198365#M49572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This removes the password protection from a dataset (not the library):&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;proc datasets;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; modify dataset (pw=oldpwd/);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 22:45:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198365#M49572</guid>
      <dc:creator>gergely_batho</dc:creator>
      <dc:date>2015-06-02T22:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198366#M49573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean how to remove passwords from all the datasets in the library?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 07:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198366#M49573</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-06-03T07:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198367#M49574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes ideally without listing each data-set in the library manually like I did here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc datasets library=TEST2 nolist;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify Stcd110_census_term_enrolment(pw=welcome/);&lt;/P&gt;&lt;P&gt;modify Stcr502_length_of_study(pw=welcome/);&lt;/P&gt;&lt;P&gt;modify Stir110u_fall_enrolment(pw=welcome/);&lt;/P&gt;&lt;P&gt;modify Stir110u_winter_enrolment(pw=welcome/);&lt;/P&gt;&lt;P&gt;modify Stir115u_summer_session_enrolmt(pw=welcome/);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 17:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198367#M49574</guid>
      <dc:creator>merrittr</dc:creator>
      <dc:date>2015-06-05T17:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198368#M49575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes but hopefully without listing each table manually as I did here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc datasets library=TEST2 nolist;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; modify Stcd110_census_term_enrolment(pw=&amp;lt;password&amp;gt;/);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; modify Stcr502_length_of_study(pw=&amp;lt;password&amp;gt;/);&lt;/P&gt;&lt;P&gt; modify Stir110u_fall_enrolment(pw=&amp;lt;password&amp;gt;/);&lt;/P&gt;&lt;P&gt; modify Stir110u_winter_enrolment(pw=&amp;lt;password&amp;gt;/);&lt;/P&gt;&lt;P&gt; modify Stir115u_summer_session_enrolmt(pw=&amp;lt;password&amp;gt;/);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 17:31:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198368#M49575</guid>
      <dc:creator>merrittr</dc:creator>
      <dc:date>2015-06-05T17:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198369#M49576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use sashelp.vtable to get a list of datasets (use a WHERE condition to select your library). With this list in a dataset, you can use a simple DATA step and the call execute subroutine to create the code dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;set sashelp.vtable (where=(libname='TEST2')) end=done;&lt;/P&gt;&lt;P&gt;if _n_ = 1 then call execute('proc datasets library=TEST2 nolist;');&lt;/P&gt;&lt;P&gt;call execute('&lt;SPAN style="font-size: 10pt;"&gt;modify ' !! strip(memname) !! ' (pw=&amp;lt;password&amp;gt;/);');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;if done then call execute('run;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 09:14:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198369#M49576</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-06-06T09:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198370#M49577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;awesome thanks Kurt that will work for me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 21:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198370#M49577</guid>
      <dc:creator>merrittr</dc:creator>
      <dc:date>2015-06-23T21:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: removing a password from a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198371#M49578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it helped. Could you please mark asnwers as helpful and correct so that the question is properly marked as "answered"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 05:31:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/removing-a-password-from-a-library/m-p/198371#M49578</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-06-24T05:31:21Z</dc:date>
    </item>
  </channel>
</rss>

