Member since
04-12-2016
46
Posts
74
Kudos Received
8
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
8047 | 03-09-2017 12:27 PM | |
2341 | 02-01-2017 09:54 AM | |
9076 | 07-07-2016 08:44 PM | |
9631 | 07-05-2016 10:18 AM | |
3371 | 07-01-2016 06:31 AM |
10-11-2019
10:28 PM
It really works after replacing ';' with '\073' ! I met this problem when using split and ';' in crontab hql, it returns " ParseException line 3:121 cannot recognize input near '<EOF>' '<EOF>' '<EOF>' in select expression".
... View more
03-23-2017
03:00 PM
If want to do one time import,use the following command,It will use hcatalog to create the table and import the data in ORC format sqoop import --connect jdbc:sqlserver://11.11.111.11;databaseName=dswFICO --driver com.microsoft.sqlserver.jdbc.SQLServerDriver --username sqoop --password sqoop --table KNA1 --hcatalog-database default --hcatalog-table KNA1 --create-hcatalog-table --hcatalog-storage-stanza "stored as orcfile"
... View more
06-17-2016
12:31 PM
Ok, so the solution is quite simple here, I tried to connect to the Hive2Server that was running on port 10000 whereas I actually should have connected to the metastore which is running on port 9083 . hive.server2.authentication is set to NONE and not to NOSASL.
... View more
06-15-2016
02:10 PM
2 Kudos
@suresh krish Try this alter table <table_name> > set serde 'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' WITH SERDEPROPERTIES ('field.delim' = '\001'); I guess hive internally converts '\001' --> \u0001
... View more