create a table and load the data through sql loader.
1. CREATE A TABLE

2. WRITE A CONTROL FILE like
LOAD DATA
INFILE 'temp.txt'
append
into table test
fields terminated by ','
(column_name char,
column name integer)

Anyway this is the time to give a look SQLLDR book. If you got problems you are welcome to post. Good Luck