I am using Sybase IQ 15 version database.
trying to load IQ table from delimited flat file
Load Table test (a,b)
using client file '/xyz/test.dat'
ESCAPES OFF
FORMAT BCP
DELIMITED BY '|';
is it failing with below error
Msg 21, Level 14, State 0:SQL Anywhere Error -1006140: I/O Error on file/xyz/test.dat - (hos_clientfileio.cxx 142)
set below option on IQ server level ,still getting same error
set option allow_read_client_file='on' ;
grant READCLIENTFILE to finsrv ;
data file is on unix client machine and File content as below
1|01
2|02
Can someone please help/advice?