<?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 zip SAS dataset in sas studio in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502368#M134104</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a Zip file using a sas code and want to move all the dataset available in a particular location or library into a zip file and then delete all the dataset outside the zipfile using SAS studio.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If any one have any code for the same kindly help me. We are running the code on Linux server(If this information help).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will be a great help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankit&lt;/P&gt;</description>
    <pubDate>Mon, 08 Oct 2018 12:20:30 GMT</pubDate>
    <dc:creator>ankitk321</dc:creator>
    <dc:date>2018-10-08T12:20:30Z</dc:date>
    <item>
      <title>zip SAS dataset in sas studio</title>
      <link>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502368#M134104</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a Zip file using a sas code and want to move all the dataset available in a particular location or library into a zip file and then delete all the dataset outside the zipfile using SAS studio.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If any one have any code for the same kindly help me. We are running the code on Linux server(If this information help).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will be a great help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 12:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502368#M134104</guid>
      <dc:creator>ankitk321</dc:creator>
      <dc:date>2018-10-08T12:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: zip SAS dataset in sas studio</title>
      <link>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502372#M134107</link>
      <description>&lt;P&gt;Use ods package:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2014/01/28/create-zip-ods-package/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2014/01/28/create-zip-ods-package/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings13/131-2013.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings13/131-2013.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To delete datasets, use proc datasets:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000393161.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000393161.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 12:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502372#M134107</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-08T12:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: zip SAS dataset in sas studio</title>
      <link>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502604#M134191</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the information you have shared.By using the 1st link we can make zip file only for one CSV. But I want to create zip file for more than 50 SAS dataset number can increase. If you can suggest an alternative or share any other code it will be a great help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankit&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 07:43:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502604#M134191</guid>
      <dc:creator>ankitk321</dc:creator>
      <dc:date>2018-10-09T07:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: zip SAS dataset in sas studio</title>
      <link>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502611#M134193</link>
      <description>&lt;P&gt;All you do is add more addfile statements to add more files:&lt;/P&gt;
&lt;PRE&gt;ods package(ProdOutput) add file='...';&lt;/PRE&gt;
&lt;P&gt;You can add as many as you want.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 08:09:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/zip-SAS-dataset-in-sas-studio/m-p/502611#M134193</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-09T08:09:33Z</dc:date>
    </item>
  </channel>
</rss>

