ops$tkyte%ORA10GR2> select * from t;
no rows selected
ops$tkyte%ORA10GR2> !cat t.ctl
load data
infile *
replace
into table t
(
FIRST_AND_LAST_NAME position(1:21) "rtrim(substr(:first_and_last_name,1,10))||' '||rtrim(substr(:first_and_last_name,12,10))"
)
begindata
Thomas Kyte
ops$tkyte%ORA10GR2> !sqlldr / t.ctl
SQL*Loader: Release 10.2.0.1.0 - Production on Fri Feb 29 01:54:22 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Commit point reached - logical record count 1
ops$tkyte%ORA10GR2> select * from t;
FIRST_AND_LAST_NAME
--------------------------------------------------
Thomas Kyte