- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Dumping the beeline output to a file, by default it is giving comma seperated file. I would like to add the delimiter as "|"(PIPE) instead of comma(,)
- Labels:
-
Apache Hive
Created ‎10-05-2016 11:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Created ‎10-05-2016 12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use
--outputformat=dsv
This output format is configurable, but the default is a pipe so the above should be sufficient for your needs.
If you want to use something else as a delim, add
--delimiterForDSV=DELIMITER
For more details, see: https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-Separated-Va...
(If this is what you are looking for, let me know by accepting the answer. Else, let me know the gaps in the answer).
Created ‎10-05-2016 12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use
--outputformat=dsv
This output format is configurable, but the default is a pipe so the above should be sufficient for your needs.
If you want to use something else as a delim, add
--delimiterForDSV=DELIMITER
For more details, see: https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-Separated-Va...
(If this is what you are looking for, let me know by accepting the answer. Else, let me know the gaps in the answer).
