DBAs,

I need to load 10M rows in flat file into one table.

The flat file format like
….|First_name|last_name|……..

……|Laura|Lee|….

I need to combine the two first_name and Last _name fields in the flat file into two columns of the tables—
Name 1 and CONTACT_NAME

For example
The above record should be loaded into two columns in the tables like
Laura Lee, Laura LEE

Name 1 CONTACT_NAME
----------------------------------------------
Laura Lee Laura Lee

How can I do this in control file of the SQL*LOADER

Thanks,

Lily