Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
In order to create a ORC file format, here is a way:
1 Create a table within Hive with for EXT format.
2 Load you data into this table using: LOAD DATA [LOCAL] INPATH.
3 Create another table within Hive with the format ORC.
4 INSERT INTO orc_table SELECT * FROM text_table.
Best regards
Sabrina