<?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 how to save data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496000#M131049</link>
    <description>&lt;P&gt;ods trace on;&lt;BR /&gt;proc datasets lib=sashelp ;&lt;BR /&gt;audit class ;&lt;BR /&gt;run;&lt;BR /&gt;ods trace off ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i run the program it shows name:members on log window next......&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ods output members=want;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc datasets lib=sashelp ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;audit class ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but i can't get the dataset .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;how to save audit data&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 16 Sep 2018 03:38:05 GMT</pubDate>
    <dc:creator>thanikondharish</dc:creator>
    <dc:date>2018-09-16T03:38:05Z</dc:date>
    <item>
      <title>how to save data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496000#M131049</link>
      <description>&lt;P&gt;ods trace on;&lt;BR /&gt;proc datasets lib=sashelp ;&lt;BR /&gt;audit class ;&lt;BR /&gt;run;&lt;BR /&gt;ods trace off ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i run the program it shows name:members on log window next......&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ods output members=want;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc datasets lib=sashelp ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;audit class ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but i can't get the dataset .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;how to save audit data&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 03:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496000#M131049</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2018-09-16T03:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to save data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496007#M131055</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as select * from dictionary.tables where libname='SASHELP';
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Sep 2018 05:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496007#M131055</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2018-09-16T05:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to save data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496008#M131056</link>
      <description>&lt;P&gt;alternatively use sashelp.vtable&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

data want;
set sashelp.vtable;
where libname='SASHELP';
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Sep 2018 05:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496008#M131056</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2018-09-16T05:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to save data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496343#M131247</link>
      <description>&lt;P&gt;If you had taken an opportunity to examine the documentation for Proc datasets you might have found as part of the AUDIT statement syntax the Details section labeled: Creating an Audit file or an Example Initiating an Audit file&lt;/P&gt;
&lt;P&gt;Basically you have to tell SAS that you are going to perform things that the Audit is to track, which is done with an INITIATE statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also the Audit creates a special format data set. If you didn't actually do anything then there is nothing for the "audit" to track.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 17:49:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-save-data/m-p/496343#M131247</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-17T17:49:26Z</dc:date>
    </item>
  </channel>
</rss>

