<?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: ERROR: invalid or missing alter password on member in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573052#M161740</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Now issue is resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Deleted the data sets and recreated them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jul 2019 12:03:30 GMT</pubDate>
    <dc:creator>sathya66</dc:creator>
    <dc:date>2019-07-12T12:03:30Z</dc:date>
    <item>
      <title>ERROR: invalid or missing alter password on member</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/572826#M161675</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I was trying to open one of my datasets after the migration(We copied the datasets to new location) and I was prompted to enter an ‘Alter Password’ . I tried and failed with my current sas password, and now when I run the code again this appears in the log.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;please suggest.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alter.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30986iE0BCAA59AC003CF6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Alter.JPG" alt="Alter.JPG" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 16:33:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/572826#M161675</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2019-07-11T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: invalid or missing alter password on member</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/572965#M161720</link>
      <description>&lt;P&gt;Give us more details. It works for me.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options dlcreatedir; 
libname SUB "%sysfunc(pathname(WORK))\sub";

data T(alter='A'); X=1; run;

proc sort data=WORK.T(alter='A'); by X; run;

proc copy in=WORK out=SUB; select T; run;

proc sort data=SUB.T(alter='A'); by descending X; run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This code runs fine as is, and fails when the passwords are erroneous.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 22:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/572965#M161720</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-07-11T22:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: invalid or missing alter password on member</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573001#M161735</link>
      <description>&lt;P&gt;Below code doesn't work for me .It is giving an error at proc copy statement&lt;/P&gt;&lt;P&gt;ERROR: File SUB.T.DATA does not exist.&lt;BR /&gt;ERROR: File SUB.T.DATA has not been saved because copy could not be completed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We moved&amp;nbsp; the data sets manually to new location (cut and paste).when I try to duplicate that table&amp;nbsp; ,it is giving below error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 08:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573001#M161735</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2019-07-12T08:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: invalid or missing alter password on member</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573006#M161736</link>
      <description>&lt;P&gt;The file path for the folder before was&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname ss "/data/datasets/Departments/ss";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and post migration it is now&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname ss "/data/datasets/Departments/EG/SS/All_Files";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initially when I ran the code concerning datasets in the location there was a pop-up prompt asking for the alter data password. Now when I open it and try to run there is no pop-up but in the log it has the error shown in the original post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;ss&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 08:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573006#M161736</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2019-07-12T08:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: invalid or missing alter password on member</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573052#M161740</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Now issue is resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Deleted the data sets and recreated them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 12:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-invalid-or-missing-alter-password-on-member/m-p/573052#M161740</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2019-07-12T12:03:30Z</dc:date>
    </item>
  </channel>
</rss>

