<?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: Getting error like &amp;quot;rename of temporary member for ...... failed  file can be found in &amp;amp;quo in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589653#M34683</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/290991"&gt;@Sai_001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can any one help to fix the issue which is happening due to .lck file extention. We are&amp;nbsp; using linux as OS. issue is users&amp;nbsp; other than the&amp;nbsp; owner (who created the dataset)&amp;nbsp; are not able to update the dataset. user is getting the error like&amp;nbsp;"rename of temporary member for ...... failed file can be found in ". Only the the person who created the dataset is able to&amp;nbsp; update it eventhough the permission set as rw-rw-rw or rwxrwxrwx.&lt;/P&gt;
&lt;P&gt;We are not&amp;nbsp; executing the huge file or no space issue.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The normal SAS steps to create a new version of a dataset is to first make a NEW file and when that succeeds then to remove the original file and rename the NEW file to the target name.&amp;nbsp; So in general it is the permissions on the &lt;STRONG&gt;directory&lt;/STRONG&gt;, not the file, that controls whether you can modify a dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To prevent concurrent changes to a file SAS will also normally create semaphore files with .lck suffix.&amp;nbsp; The presence of this fill will let other SAS sessions know that the file is LOCKED and so cannot be changed. Once the update is done the lck file is removed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That said it is possible for SAS to crash in a way that leaves the .lck file that is created to prevent concurrent changes on the disk and the existance of that file will stop SAS from letting you update the file.&amp;nbsp; If you are sure that file is ok and no SAS processes are currently trying to update it then you can use operating system commands to remove the .lck file and you should be able to update the file again.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Sep 2019 13:57:51 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-09-18T13:57:51Z</dc:date>
    <item>
      <title>Getting error like "rename of temporary member for ...... failed  file can be found in "</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589586#M34681</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one help to fix the issue which is happening due to .lck file extention. We are&amp;nbsp; using linux as OS. issue is users&amp;nbsp; other than the&amp;nbsp; owner (who created the dataset)&amp;nbsp; are not able to update the dataset. user is getting the error like&amp;nbsp;"rename of temporary member for ...... failed file can be found in ". Only the the person who created the dataset is able to&amp;nbsp; update it eventhough the permission set as rw-rw-rw or rwxrwxrwx.&lt;/P&gt;&lt;P&gt;We are not&amp;nbsp; executing the huge file or no space issue.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 10:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589586#M34681</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-18T10:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589644#M34682</link>
      <description>The permissions are fine.  You need to know what .lck is  telling you.&lt;BR /&gt;&lt;BR /&gt;What should happen if one user is sorting the data set and another user tries to update the data  set at the same time?  The answer is that no one can access the data until PROC SORT completes.  It doesn't matter whether the person who is sorting the data is the creator or any other authorized user.  All other users are locked out (hence ".lck") until sorting completes.&lt;BR /&gt;&lt;BR /&gt;SAS doesn't allow two people to update a data set at the same time.</description>
      <pubDate>Wed, 18 Sep 2019 13:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589644#M34682</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-09-18T13:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589653#M34683</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/290991"&gt;@Sai_001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can any one help to fix the issue which is happening due to .lck file extention. We are&amp;nbsp; using linux as OS. issue is users&amp;nbsp; other than the&amp;nbsp; owner (who created the dataset)&amp;nbsp; are not able to update the dataset. user is getting the error like&amp;nbsp;"rename of temporary member for ...... failed file can be found in ". Only the the person who created the dataset is able to&amp;nbsp; update it eventhough the permission set as rw-rw-rw or rwxrwxrwx.&lt;/P&gt;
&lt;P&gt;We are not&amp;nbsp; executing the huge file or no space issue.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The normal SAS steps to create a new version of a dataset is to first make a NEW file and when that succeeds then to remove the original file and rename the NEW file to the target name.&amp;nbsp; So in general it is the permissions on the &lt;STRONG&gt;directory&lt;/STRONG&gt;, not the file, that controls whether you can modify a dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To prevent concurrent changes to a file SAS will also normally create semaphore files with .lck suffix.&amp;nbsp; The presence of this fill will let other SAS sessions know that the file is LOCKED and so cannot be changed. Once the update is done the lck file is removed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That said it is possible for SAS to crash in a way that leaves the .lck file that is created to prevent concurrent changes on the disk and the existance of that file will stop SAS from letting you update the file.&amp;nbsp; If you are sure that file is ok and no SAS processes are currently trying to update it then you can use operating system commands to remove the .lck file and you should be able to update the file again.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 13:57:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589653#M34683</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-18T13:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589939#M34702</link>
      <description>&lt;P&gt;Hi Astounding,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the&amp;nbsp; details. the problem is there is no second person is&amp;nbsp; trying to run when&amp;nbsp; some one is trying.Each day we are taking turns to run it program and also make sure there is no held process for these datasets. Except the creator&amp;nbsp; others couldn't able to run it , its ended up with error like "rename of temXXXX" , ans this report was working fine for all of us until last month. Suddenly it is starts behaving&amp;nbsp; like this , no profile change happened recently for these users in SAs Management console. Is any folder permission, file permission needs to be checked ? file permission is rw-rw-rw and folder permission is rwxrwxrwxT.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2019 07:16:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589939#M34702</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-19T07:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589940#M34703</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for&amp;nbsp; your valuable inputs. so you said the permisssion of the folder can play the role. In that case , this folder permission is rwxrwxrwxT and all the persons who are used to run this program were able to run till this month and this issue started since&amp;nbsp; fist of this month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also , even after removing the .lck filesfrom system, if the user tries again, same .lck files are gettting created and&amp;nbsp; program excution is ended up with the said error. the only user , who is the creator/ updated it lastly (before the .lck issue arrise ) nly can able to update it .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2019 07:22:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/589940#M34703</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-19T07:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590558#M34719</link>
      <description>&lt;P&gt;Have there been any system changes made around the time the problem started? Some system event must have happened to cause the change.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2019 22:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590558#M34719</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-09-20T22:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590561#M34720</link>
      <description>&lt;P&gt;Check for some other software that might be locking the files.&amp;nbsp; Like a backup system or some type of crawler.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Sep 2019 00:16:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590561#M34720</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-21T00:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590565#M34721</link>
      <description>Difficult to diagnose from a distance.  If possible, try to narrow your focus by testing:&lt;BR /&gt;&lt;BR /&gt;Can a non-creator run the program if all other users are logged off?</description>
      <pubDate>Sat, 21 Sep 2019 02:23:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590565#M34721</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-09-21T02:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590719#M34723</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/290991"&gt;@Sai_001&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;It used to work and now doesn't anymore&lt;/EM&gt;. This is a very clear indication that something in the environment changed.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/62/333.html" target="_self" rel="nofollow noreferrer"&gt;Problem Note 62333&lt;/A&gt;&amp;nbsp;might give you some guidance.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my personal experience it's almost always antivirus software that interferes. Talk to your system admin if there has been a change lately. May be they haven't excluded .lck and .sas7bdat from scanning.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2019 11:36:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590719#M34723</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-09-22T11:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;quo</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590844#M34732</link>
      <description>&lt;P&gt;No, the non creator is getting the same error , even no one is logging or running it.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 08:34:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590844#M34732</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-23T08:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590845#M34733</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;In my personal experience it's almost always antivirus software that interferes. Talk to your system admin if there has been a change lately. May be they haven't excluded .lck and .sas7bdat from scanning&lt;/FONT&gt;.&lt;/SPAN&gt;Is it applicable for linux environement ? application is running on linux server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 08:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590845#M34733</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-23T08:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590846#M34734</link>
      <description>&lt;P&gt;OS is linux system and the server team confirms taht there is no configuration change happened in that month time. Is it possible to emntion few check points that&amp;nbsp; needs to be checked in server end regarding this so that , I can ask the team to take a look on those.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 08:41:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590846#M34734</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-23T08:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590904#M34735</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/290991"&gt;@Sai_001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Patrick,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;In my personal experience it's almost always antivirus software that interferes. Talk to your system admin if there has been a change lately. May be they haven't excluded .lck and .sas7bdat from scanning&lt;/FONT&gt;.&lt;/SPAN&gt;Is it applicable for linux environement ? application is running on linux server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, that also applies to a Linux OS. Last time I've been in a project where some antivirus software locked tables the OS was RHEL.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590904#M34735</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-09-23T13:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590908#M34736</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/290991"&gt;@Sai_001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Patrick,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;In my personal experience it's almost always antivirus software that interferes. Talk to your system admin if there has been a change lately. May be they haven't excluded .lck and .sas7bdat from scanning&lt;/FONT&gt;.&lt;/SPAN&gt;Is it applicable for linux environement ? application is running on linux server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, that also applies to a Linux OS. Last time I've been in a project where some antivirus software locked tables the OS was RHEL.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Note also that these days the disks are not normally physically on the same machine the one you are running your code from. So the ant-virus software could be running on some other server and just scanning the disk that you are trying to use to write your SAS datasets.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/590908#M34736</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-23T13:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error like "rename of temporary member for ...... failed  file can be found in &amp;amp</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/591425#M34745</link>
      <description>&lt;P&gt;Thanks Patric.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will check in that aspect .&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 08:01:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Getting-error-like-quot-rename-of-temporary-member-for-failed/m-p/591425#M34745</guid>
      <dc:creator>Sai_001</dc:creator>
      <dc:date>2019-09-25T08:01:37Z</dc:date>
    </item>
  </channel>
</rss>

