<?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 can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340301#M272688</link>
    <description>&lt;P&gt;Thank you for your answers. Sady no luck yet.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt; I am not reading a table so I cannot set column properties.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; This option is only used by data steps.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2017 03:46:01 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2017-03-13T03:46:01Z</dc:date>
    <item>
      <title>How can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340288#M272685</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I run this code to extract Hadoop Metadata&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
 connect to hadoop ( &amp;amp;hadoop_connection.);
 create table METADATA as
   select * from connection to hadoop ( describe extended &amp;amp;tableout. );
 disconnect from hadoop;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;and I can't get rid of the dreaded Hadoop warning:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;WARNING: The following columns could have a length in SAS of 32767. If so, SAS performance is impacted. See SAS/ACCESS documentation for details.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any way to disable this pesky&amp;nbsp;warning and extract the metadata&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 02:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340288#M272685</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-03-13T02:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340293#M272686</link>
      <description>&lt;P&gt;Take a look at page 20 of the following document:&amp;nbsp;&lt;A href="http://support.sas.com/resources/thirdpartysupport/v94/hadoop/sas-hadoop-performance-strategies.pdf" target="_blank"&gt;http://support.sas.com/resources/thirdpartysupport/v94/hadoop/sas-hadoop-performance-strategies.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The answer, I think, is to issue alter statements to Hadoop in order to set the desired SAS properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 02:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340293#M272686</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-03-13T02:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340296#M272687</link>
      <description>&lt;PRE&gt;
Not sure if this option could work.


options VARLENCHK=nowarn;


&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Mar 2017 03:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340296#M272687</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-03-13T03:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340301#M272688</link>
      <description>&lt;P&gt;Thank you for your answers. Sady no luck yet.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt; I am not reading a table so I cannot set column properties.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; This option is only used by data steps.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 03:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/340301#M272688</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-03-13T03:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid WARNING: The following columns could have a length in SAS of 32767...  in Hadoop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/342226#M272689</link>
      <description>&lt;P&gt;Not ideal but a way to avoid the message &lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/Enable-disabling-warnings-in-log-when-a-Hadoop-string-is-long/idi-p/341800" target="_self"&gt;here&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Mar 2017 10:10:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-avoid-WARNING-The-following-columns-could-have-a/m-p/342226#M272689</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-03-18T10:10:56Z</dc:date>
    </item>
  </channel>
</rss>

