SQL*LDR Invoice Imports
I'm importing accrual invoices from a .csv file and getting strange results. The data value for Amount in the .csv file looks like $1000.00, the table it's loading into is AMOUNT Number(8,2) and the control file for this field is defined as Amount char "TO_NUMBER(TRIM('$' FROM :Amount), '9,999,999.99')",
Here's the issue. the only entries that are successfully imported are 3 digits or less. The ones with values over $999.99 are giving an error of ORA-01722: Invalid Number. Anyone know what I'm missing?
Tagged:
0