<?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: JSL: Save data table with Compression in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4538#M4538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, in windows XP and later, the NTFS file system supports data compression at the OS level.&amp;nbsp; In XP, right click on a file or directory and select properties, click "Advanced" and you get the choice to compress.&amp;nbsp; You can set it up at the directory level, so all files and subdirectories will be compressed as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;See &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://en.wikipedia.org/wiki/NTFS#File_compression"&gt;http://en.wikipedia.org/wiki/NTFS#File_compression&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Mar 2012 02:55:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-03-08T02:55:25Z</dc:date>
    <item>
      <title>JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4534#M4534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;current data table() &amp;lt;&amp;lt; save("\\fssg52\VIEW21_CHECKLIST.sas7bdat", SAS);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the above code to save the JMP data table to SAS data sets. But without compression the data table is very big. How do I put the SAS equivalent of '(Compress=yes)'&amp;nbsp; in JSL?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 10:06:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4534#M4534</guid>
      <dc:creator>hellind</dc:creator>
      <dc:date>2012-03-07T10:06:19Z</dc:date>
    </item>
    <item>
      <title>JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4535#M4535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you also have access to SAS (either local or remote), one work-around might be to comress the file after transferring to SAS with a little post-processing via the SAS Submit command.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt = Open("$SAMPLE_DATA\Big Class.jmp");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; Save As("C:\temp\BigClass.sas7bdat", SAS);&lt;/P&gt;&lt;P&gt;// or &lt;/P&gt;&lt;P&gt;﻿dt &amp;lt;&amp;lt; SAS Export Data( dt, temp, BigClass, Replace Existing);&lt;/P&gt;&lt;P&gt;// then &lt;/P&gt;&lt;P&gt;SAS Submit("&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; libname temp "C:\temp";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data temp.BigClass(compress=yes);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set temp.BisClass;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;proc contents data=temp.BigClass;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;-Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 17:55:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4535#M4535</guid>
      <dc:creator>mattf</dc:creator>
      <dc:date>2012-03-07T17:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4536#M4536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about using the OS file compression?&amp;nbsp; In Windows NTFS file system, the compression that is built in does a better job of compression than the SAS dataset option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;See &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://en.wikipedia.org/wiki/NTFS#File_compression"&gt;http://en.wikipedia.org/wiki/NTFS#File_compression&lt;/A&gt;&lt;SPAN&gt; .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doc Muhlbaier&lt;/P&gt;&lt;P&gt;Duke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 18:19:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4536#M4536</guid>
      <dc:creator />
      <dc:date>2012-03-07T18:19:26Z</dc:date>
    </item>
    <item>
      <title>JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4537#M4537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doc@Duke,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean compression to ZIP? I save the file in a shared folder to be used by the team.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 02:47:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4537#M4537</guid>
      <dc:creator>hellind</dc:creator>
      <dc:date>2012-03-08T02:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4538#M4538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, in windows XP and later, the NTFS file system supports data compression at the OS level.&amp;nbsp; In XP, right click on a file or directory and select properties, click "Advanced" and you get the choice to compress.&amp;nbsp; You can set it up at the directory level, so all files and subdirectories will be compressed as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;See &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://en.wikipedia.org/wiki/NTFS#File_compression"&gt;http://en.wikipedia.org/wiki/NTFS#File_compression&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 02:55:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4538#M4538</guid>
      <dc:creator />
      <dc:date>2012-03-08T02:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save data table with Compression</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4539#M4539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see. I learned something new. I can set compression=on on my local folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But because I am saving the datatables as SAS Datasets to a &lt;STRONG&gt;shared folder&lt;/STRONG&gt;, controlled my IT, I don't have the option to right click on the shared folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My workplace is a corporate with tight security.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2012 03:29:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-data-table-with-Compression/m-p/4539#M4539</guid>
      <dc:creator>hellind</dc:creator>
      <dc:date>2012-03-09T03:29:59Z</dc:date>
    </item>
  </channel>
</rss>

