Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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

avatar
Explorer
 
1 ACCEPTED SOLUTION

avatar

Hi @Mayank Pandey

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?

View solution in original post

1 REPLY 1

avatar

Hi @Mayank Pandey

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?