Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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
New Member
 
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?