Member since
03-22-2017
10
Posts
0
Kudos Received
0
Solutions
10-04-2019
02:18 AM
Hello, can you please share the some sample custom masking examples. Otherwise please share any relevant web page or link.
... View more
05-08-2017
09:35 AM
I have made a test. I create a text file file content in Unicode UTF-8: > cat test.csv
björn,alvägen
> file test.csv
test.csv: UTF-8 Unicode text
And create a table reading from that csv file; hive> CREATE EXTERNAL TABLE test (
> column1 String,
> column2 String
> )
> ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
> LOCATION '/user/myuser/test/';
hive> select * from test;
OK
björn alvägen
Time taken: 0.058 seconds, Fetched: 1 row(s)
But in HIVE VIEW: test.column1 test.column2
bj?rn alv?gen Similar issue happens for Zeppelin. So, it is not a problem with encoding of source file @Jay SenSharma, @Umair Khan @Shyam Sunder Rai as I have source file in URF-8 and Hive can query data and display it in correct UTF-8. It must be an issue with HIVE VIEW and Zeppelin
... View more