<?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 get deleted datasets names information in temparory library and permenant library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874611#M345581</link>
    <description>&lt;P&gt;It all depends on your system configuration.&lt;/P&gt;
&lt;P&gt;If you allow SAS server access only to SAS datasets, you could find this information in SAS server logs, given that you activate appropriate logging levels.&lt;/P&gt;
&lt;P&gt;More realistic is probably to investigate if the OS that hold the data can be configured with logging of file operations.&lt;/P&gt;
&lt;P&gt;If your requirement is keep track on such operations I think moving your data to a RDBMS is one way to solve it.&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2023 07:59:45 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2023-05-09T07:59:45Z</dc:date>
    <item>
      <title>how to get deleted datasets names information in temparory library and permenant library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874602#M345576</link>
      <description>&lt;P&gt;Hi Guys ,&lt;/P&gt;
&lt;P&gt;Good Morning&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to get deleted datasets names information in temp library and permanent library ?&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 06:35:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874602#M345576</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2023-05-09T06:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to get deleted datasets names information in temparory library and permenant library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874603#M345577</link>
      <description>&lt;P&gt;SAS datasets and other SAS files are files. When deleted they're gone.&lt;/P&gt;
&lt;P&gt;So I need a bit more context. What is your situation/requirement/use case?&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 06:48:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874603#M345577</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2023-05-09T06:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to get deleted datasets names information in temparory library and permenant library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874605#M345579</link>
      <description>&lt;P&gt;i want to know which datasets have been deleted that information&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 07:18:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874605#M345579</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2023-05-09T07:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to get deleted datasets names information in temparory library and permenant library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874611#M345581</link>
      <description>&lt;P&gt;It all depends on your system configuration.&lt;/P&gt;
&lt;P&gt;If you allow SAS server access only to SAS datasets, you could find this information in SAS server logs, given that you activate appropriate logging levels.&lt;/P&gt;
&lt;P&gt;More realistic is probably to investigate if the OS that hold the data can be configured with logging of file operations.&lt;/P&gt;
&lt;P&gt;If your requirement is keep track on such operations I think moving your data to a RDBMS is one way to solve it.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 07:59:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874611#M345581</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2023-05-09T07:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to get deleted datasets names information in temparory library and permenant library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874634#M345587</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;If you're looking for metadata, take a look at the &lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/070-30.pdf" target="_blank" rel="noopener"&gt;dictionary tables&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The information of which datasets are known to SAS at run time can be found in sashelp.vtable.&lt;/P&gt;
&lt;P&gt;If you save the states before and after your operations in two datasets you could compare them afterwards:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data stateBefore;
   set sashelp.vtable;
run;

*[...Some operations...];

data stateAfter;
   set sashelp.vtable;
run;

proc compare base=state comp=stateAfter listall; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;PS: sashelp.vcolumn lists the variables as well and could be of interest for you&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 10:24:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-deleted-datasets-names-information-in-temparory/m-p/874634#M345587</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2023-05-09T10:24:13Z</dc:date>
    </item>
  </channel>
</rss>

