<?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: Finding out when last a file was accessed. in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371283#M9167</link>
    <description>&lt;PRE&gt;ls -ul filename&lt;/PRE&gt;
&lt;P&gt;is the UNIX command to display the last access timestamp of a file.&lt;/P&gt;
&lt;P&gt;Be aware that this might not really tell you much, as each complete backup will read the file.&lt;/P&gt;
&lt;P&gt;And everytime someone uses sashelp.vtable or sashelp.vcolumn every table in every currently assigend library will be read.&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jun 2017 13:19:57 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-06-28T13:19:57Z</dc:date>
    <item>
      <title>Finding out when last a file was accessed.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371280#M9166</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I go about finding out when last a file was accessed(Read)? We can find out when last it was written or modified but not read.&lt;/P&gt;&lt;P&gt;- We do not have Environment Manager enabled.&lt;/P&gt;&lt;P&gt;- We are on Linux Suse&lt;/P&gt;&lt;P&gt;- One Linux Suse server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 13:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371280#M9166</guid>
      <dc:creator>SBSA_T</dc:creator>
      <dc:date>2017-06-28T13:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Finding out when last a file was accessed.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371283#M9167</link>
      <description>&lt;PRE&gt;ls -ul filename&lt;/PRE&gt;
&lt;P&gt;is the UNIX command to display the last access timestamp of a file.&lt;/P&gt;
&lt;P&gt;Be aware that this might not really tell you much, as each complete backup will read the file.&lt;/P&gt;
&lt;P&gt;And everytime someone uses sashelp.vtable or sashelp.vcolumn every table in every currently assigend library will be read.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 13:19:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371283#M9167</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-28T13:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Finding out when last a file was accessed.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371585#M9179</link>
      <description>&lt;P&gt;Thanks Kurt. This helps.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 09:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/371585#M9179</guid>
      <dc:creator>SBSA_T</dc:creator>
      <dc:date>2017-06-29T09:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Finding out when last a file was accessed.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/372131#M9234</link>
      <description>&lt;P&gt;Very useful. There is also the &lt;STRONG&gt;stat&lt;/STRONG&gt; /&lt;STRONG&gt; istat&lt;/STRONG&gt; commands to display the same information taken out from the filesystem &amp;nbsp;with the 3 three components of timestamp. Linux &lt;STRONG&gt;stat&amp;nbsp;&lt;/STRONG&gt;might offer some additonal functionality fbeing able to&lt;/P&gt;
&lt;P&gt;customise the output sometimes, reducing the amount of information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;eg, &lt;STRONG&gt;istat&lt;/STRONG&gt; command for AIX 7.1 (IBM Unix)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.ibm.com/support/knowledgecenter/en/ssw_aix_71/com.ibm.aix.cmds3/istat.htm" target="_blank"&gt;https://www.ibm.com/support/knowledgecenter/en/ssw_aix_71/com.ibm.aix.cmds3/istat.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL class="ul ibm-colored-list ibm-textcolor-gray-80"&gt;
&lt;LI class="li"&gt;Date of the last i-node update ("physical storage information")&lt;/LI&gt;
&lt;LI class="li"&gt;Date of the last file modification&lt;/LI&gt;
&lt;LI class="li"&gt;Date of the last reference to the file &amp;nbsp;("last access")&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 30 Jun 2017 12:39:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/372131#M9234</guid>
      <dc:creator>ronan</dc:creator>
      <dc:date>2017-06-30T12:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Finding out when last a file was accessed.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/372662#M9253</link>
      <description>&lt;P&gt;Thanks Ronan. This is very helpful indeed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2017 07:13:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-out-when-last-a-file-was-accessed/m-p/372662#M9253</guid>
      <dc:creator>SBSA_T</dc:creator>
      <dc:date>2017-07-03T07:13:40Z</dc:date>
    </item>
  </channel>
</rss>

