Hi,
i am new to Ingres and OpenROAD, and now i am trying to use "Copy table" utility of Ingres, can anyone help me to solve this:
I have a text file comma separated: test.txt with content:
10,'12-mar-2004',2000,60,30
11,'12-mar-2004',2000,60,10
and a table named balance
In a openROAD script , i use:
copy balance(
balance_id= integer,
balance_date= d1,
balance_value= integer,
tenancy_id= integer,
account_number= integer,
nl=d1)
from 'C:/test.txt';
and it's raising error:
E_CO0024 COPY: Unexpected END OF FILE while processing row 4.
Many thanks