SQLLDR [message #316530] |
Fri, 25 April 2008 10:10 |
chintu00
Messages: 91 Registered: February 2007 Location: NJ, US
|
Member |
|
|
I am using SQLLDR
my control file
1 load data infile 'source.dat'
2 into table xx_ips_promotion_coupon_temp
3 fields terminated by "," optionally enclosed by '"'
4 (promo_id, coupon_code)
source.dat
1 18,18745643
2 18,19417947
3 18,19892898
4 18,42063136
5 18,86868654
6 20,69430714
7 21,12498599
8 21,15080689
9 21,19267689
10 21,19935689
11 21,96207089
12 22,17064678
13 22,29188260
14 23,14908136
15 23,19578920
My Log file
2 SQL*Loader: Release 8.0.6.3.0 - Production on Fri Apr 25 11:01:00 2008
3
4 (c) Copyright 1999 Oracle Corporation. All rights reserved.
5
6 SQL*Loader-503: Error appending extension to file ()
7 Additional information: 7217
Can somebody help please?
|
|
|
|
|
|
|
|
|
Re: SQLLDR [message #316649 is a reply to message #316530] |
Sat, 26 April 2008 22:06 |
TheSingerman
Messages: 49 Registered: April 2008 Location: Brighton, Michigan
|
Member |
|
|
It's been seven years since I've worked with anything that old (and never on WinDoze), but is is possible that this version of sqlldr is taking source.dat and trying to append .dat to it, and deciding that source.dat.dat is a No-No?
|
|
|