@Sudha ChandrikaORC is a Column Major storage format! You need not mention ROW FORMAT DELIMITED FIELDS TERMINATED BY statements.
Simply create your table as
CREATE EXTERNAL TABLE mytable
(
col1 bigint,
col2 bigint
)
STORED AS ORC
location '<ORC File location';
From Question - I am using the same delimiter for ORC storage and HIVE table creation.
How are you creating ORC file?