Folks:
In ASE I have used named pipe to migrate data from one server to another in same hardware platform (same endian) running both UNIX or Linux as below.
# create a named pipe
mknod pipe_name p
# bcp in data first to target table
bcp ... in -n -A4096
#Start bcp out from another session
bcp ... out -n -A4096
Can I use the similar named pipe technique to migrate data in IQ using 'load table in target server' & 'select * from source table' instead of bcp?
Want to migrate from AIX to Linuxx86-64
Thanks,
Sid.