<?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 do I create ORC tables with compression in SAS DI Studio without using user written passthro in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/325330#M9458</link>
    <description>&lt;P&gt;One additional comment, if you use the SAS in-database hadoop code accelerator to read/write the data, &lt;SPAN&gt;Avro, Parquet, and Sequence files are automatically compressed using Snappy, assuming it is enabled on your hadoop system. &amp;nbsp;The&amp;nbsp;DBCREATE_TABLE_OPTS setting is also available on the table properties in DI Studio. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Nancy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2017 16:32:04 GMT</pubDate>
    <dc:creator>nar_sas</dc:creator>
    <dc:date>2017-01-17T16:32:04Z</dc:date>
    <item>
      <title>How do I create ORC tables with compression in SAS DI Studio without using user written passthrough?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/265381#M7313</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333;"&gt;I’ve been looking at creating ORC tables in Hadoop(2.2) and have successfully used the&amp;nbsp;DBCREATE_TABLE_OPTS on the table properties within SAS DI Studio(4.9) for registered or permanent tables (options do not stick on work tables registered to Hadoop libraries).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333;"&gt;What I’ve not managed to do is find is where I can add details of the type of compression(E.G. Snappy) I’d like to use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333;"&gt;Has anyone had any success in doing this other than pass-through user written code?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 10:53:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/265381#M7313</guid>
      <dc:creator>Centrica</dc:creator>
      <dc:date>2016-04-21T10:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create ORC tables with compression in SAS DI Studio without using user written passthro</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/325322#M9432</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/5809"&gt;@Centrica&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may be able to add this to the DBCREATE_TABLE_OPTS= option. Here is the SQL I think will work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pln"&gt;STORED AS orc tblproperties &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"orc.compress"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"SNAPPY"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pun"&gt;I am not sure how to do this with DI Studio, but it sounds like you have that sorted out. I will try this later today.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pun"&gt;Best wishes,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pun"&gt;Jeff&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 16:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/325322#M9432</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2017-01-17T16:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create ORC tables with compression in SAS DI Studio without using user written passthro</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/325330#M9458</link>
      <description>&lt;P&gt;One additional comment, if you use the SAS in-database hadoop code accelerator to read/write the data, &lt;SPAN&gt;Avro, Parquet, and Sequence files are automatically compressed using Snappy, assuming it is enabled on your hadoop system. &amp;nbsp;The&amp;nbsp;DBCREATE_TABLE_OPTS setting is also available on the table properties in DI Studio. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Nancy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 16:32:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-I-create-ORC-tables-with-compression-in-SAS-DI-Studio/m-p/325330#M9458</guid>
      <dc:creator>nar_sas</dc:creator>
      <dc:date>2017-01-17T16:32:04Z</dc:date>
    </item>
  </channel>
</rss>

