Member since
07-08-2017
3
Posts
0
Kudos Received
0
Solutions
11-08-2017
12:59 PM
@MONORANJAN MOHAPATRA, You can use approach suggested by @Slim assuming all the data is of fixed length. You can change it as below hive> CREATE TABLE foo (bar CHAR(11));
hive> insert into foo values ("00-00-8D-AC");
hive> select * from foo;
OK
00-00-8D-AC
Thanks, Aditya
... View more