<?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>question Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly. in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140578#M39972</link>
    <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/1842/lsundar19.html" nodeid="1842"&gt;@Sundar Lakshmanan&lt;/A&gt;. The input file must use a comma as the field delimiter. &lt;/P&gt;&lt;P&gt;If you can change the format of the input file to use a more non-standard character such as a pipe or a tilde, that would fix the issue.  With the lazy simple serde you can specifiy a different field delimiter as another serdeproperty: 'field.delim' = '|'&lt;/P&gt;&lt;P&gt;Otherwise you could use a pig script to pre-process the data to remove comma from that field, or use some hive post-processing to collapse the 2 fields down into one in a new table.  &lt;/P&gt;</description>
    <pubDate>Wed, 07 Sep 2016 21:12:29 GMT</pubDate>
    <dc:creator>bpreachuk</dc:creator>
    <dc:date>2016-09-07T21:12:29Z</dc:date>
    <item>
      <title>How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140575#M39969</link>
      <description />
      <pubDate>Wed, 07 Sep 2016 18:38:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140575#M39969</guid>
      <dc:creator>lsundar19</dc:creator>
      <dc:date>2016-09-07T18:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140576#M39970</link>
      <description>&lt;P&gt;Does it help: (for me it did not help, may be i missed something)&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/54162/why-hive-is-not-able-to-store-special-characters-l.html"&gt;https://community.hortonworks.com/questions/54162/why-hive-is-not-able-to-store-special-characters-l.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2016 18:46:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140576#M39970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-07T18:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140577#M39971</link>
      <description>&lt;P&gt;Thanks Jk for your immediate response.&lt;/P&gt;&lt;P&gt;After using "ROW FORMAT SERDE ‘org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe’ WITH SERDEPROPERTIES(“serialization.encoding”=’UTF-8′);"  solved the spanish character issue. But we have one more column with values like -10,476.53 because
of this column, we had column jumping , this values stored  in hive -10 in one column and 476.53 in another column. Do the needful. &lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2016 20:33:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140577#M39971</guid>
      <dc:creator>lsundar19</dc:creator>
      <dc:date>2016-09-07T20:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140578#M39972</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/1842/lsundar19.html" nodeid="1842"&gt;@Sundar Lakshmanan&lt;/A&gt;. The input file must use a comma as the field delimiter. &lt;/P&gt;&lt;P&gt;If you can change the format of the input file to use a more non-standard character such as a pipe or a tilde, that would fix the issue.  With the lazy simple serde you can specifiy a different field delimiter as another serdeproperty: 'field.delim' = '|'&lt;/P&gt;&lt;P&gt;Otherwise you could use a pig script to pre-process the data to remove comma from that field, or use some hive post-processing to collapse the 2 fields down into one in a new table.  &lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2016 21:12:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140578#M39972</guid>
      <dc:creator>bpreachuk</dc:creator>
      <dc:date>2016-09-07T21:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140579#M39973</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.hortonworks.com/users/235/bpreachuk.html"&gt;bpreachuk&lt;/A&gt;, &lt;/P&gt;&lt;P&gt;'field.delim' = '|' also not helping me, But somehow we have fixed the issue with below CSV serde properties :&lt;/P&gt;&lt;P&gt;WITH SERDEPROPERTIES (
"separatorChar" = ",", 
"quoteChar"     = "\"", 
"escapeChar"    = "\\",
"serialization.encoding"='ISO-8859-1')
LOCATION '/path/'  TBLPROPERTIES (
'store.charset'='ISO-8859-1',
'retrieve.charset'='ISO-8859-1',
'skip.header.line.count'='1');
&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2016 22:07:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140579#M39973</guid>
      <dc:creator>lsundar19</dc:creator>
      <dc:date>2016-09-07T22:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140580#M39974</link>
      <description>&lt;P&gt;Change the format of the input file to use a more non-standard character&lt;/P&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;&lt;A href="https://spanishto-english.com/"&gt;Spanish to English&lt;/A&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 14:54:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140580#M39974</guid>
      <dc:creator>spanishtoenglis</dc:creator>
      <dc:date>2017-08-30T14:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can i handle the spanish characters in hive table? Ex : some columns in CSV file have the values like ó, ñ. While load this values to hive,It stored like box  �. Please help me on this, i want to create hive table and load this values properly.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140581#M39975</link>
      <description>&lt;P&gt;Well, this is my first visit to your blog! Your blog provided us valuable information .You have done a marvelous job&lt;/P&gt;&lt;P&gt;- &lt;A href="http://happywheelsaz.com/" target="_blank"&gt;happy wheels&lt;/A&gt;&lt;/P&gt;,&lt;P&gt;I think this is an informative post and it is very useful and knowledgeable. I really enjoyed reading this post. big fan, thank you!&lt;/P&gt;&lt;P&gt;- &lt;A href="http://happywheelsaz.com/" target="_blank"&gt;happy wheels&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 11:02:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-can-i-handle-the-spanish-characters-in-hive-table-Ex/m-p/140581#M39975</guid>
      <dc:creator>happywheelssaz</dc:creator>
      <dc:date>2018-07-05T11:02:04Z</dc:date>
    </item>
  </channel>
</rss>

