Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Solved
Go to solution
Is it possible to convert a text file format to ORC file format not the table? Also when I'm trying to insert into ORC table from a text file table, the data is not inserting even though mapreduce job is happening. Please help me in this regard
Labels:
- Labels:
-
MapReduce
Explorer
Created on ‎08-08-2016 06:53 AM - edited ‎09-16-2022 03:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1 ACCEPTED SOLUTION
Guru
Created ‎08-08-2016 03:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have existing tables (not in ORC format), I'd recommend creating the ORC tables. Then run:
insert into yourorctable select * from yourexistingtable;
Is this how you are currently inserting data?
1 REPLY 1
Guru
Created ‎08-08-2016 03:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have existing tables (not in ORC format), I'd recommend creating the ORC tables. Then run:
insert into yourorctable select * from yourexistingtable;
Is this how you are currently inserting data?
