Hi All,
Using the loader, we want to load a row with integers, strings and dates/times/timestamps.
Strings and integers are OK. In desperation, we're trying to assign the date values as strings. Is there a simple example of this? Is there any example of dates in direct path loader? The DirectPath project shows only integers and strings; it omits to demonstrate the date or timestamp types.
The field in question is called INSERTDATE TIMESTAMP(3) nullable.
We get error:
ORA-26093: input data column size (19) exceeds the maximum input size (8)
The 19 is the length of the date/time string we supply. Presumably, the 8 is some Oracle date storage type (or maybe a real?)
We have set the column .Datatype to dpString and the .DateFormat to 'DD/MM/YYYY HH24:MI:SS' and the value passed in is '24/06/2002 16:36:15' (without the quotes) so all looks correct, but still this error arises.
Using the loader, we want to load a row with integers, strings and dates/times/timestamps.
Strings and integers are OK. In desperation, we're trying to assign the date values as strings. Is there a simple example of this? Is there any example of dates in direct path loader? The DirectPath project shows only integers and strings; it omits to demonstrate the date or timestamp types.
The field in question is called INSERTDATE TIMESTAMP(3) nullable.
We get error:
ORA-26093: input data column size (19) exceeds the maximum input size (8)
The 19 is the length of the date/time string we supply. Presumably, the 8 is some Oracle date storage type (or maybe a real?)
We have set the column .Datatype to dpString and the .DateFormat to 'DD/MM/YYYY HH24:MI:SS' and the value passed in is '24/06/2002 16:36:15' (without the quotes) so all looks correct, but still this error arises.