Member since
02-12-2014
10
Posts
5
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
94138 | 08-20-2014 06:57 PM |
10-10-2017
11:13 AM
You should specify file delimiter and new line character while creating table. ROW FORMAT DELIMITED FIELDS TERMINATED BY '\u0001' LINES TERMINATED BY '\n'
... View more
02-03-2016
03:12 PM
Ok. We do have a workaround where we store the load job and its execution time in a table. Just wanted to know if something available out of the box. Can you submit a feature request for the same?
... View more
02-03-2016
02:36 PM
I am not asking how to get total execution time. I want to know how to get the time when last compute stat was run. I tried describe formatted table but it doesn't show when was compute stat run on the table.
... View more
02-03-2016
12:19 PM
Hi, Is there a way to find the time for last compute stats command on a given table in Impala?
... View more
Labels:
- Labels:
-
Apache Impala
01-02-2015
03:47 PM
Can you share steps to setup JDBC connection in SQuirreL ? I am hitting issue while setting it up. And does it work with Keberosized Cluster?
... View more
08-20-2014
06:57 PM
4 Kudos
Try below syntax. Remove -k if your environment is not kerberosized - impala-shell -k -i servername:portname -B -q 'select * from table' -o filename '--output_delimiter=\001'
... View more
08-20-2014
04:18 PM
1 Kudo
You can use -o filename or --output_file filename & --output_delimiter=character options to generate output in csv file format.
... View more