Help for this page
mknod /tmp/bcp-pipe p
bcp mydb..mytable out /tmp/bcp-pipe -c -Uuser -Sserver
open FIFO, '/tmp/bcp-pipe' or die "cannot open /tmp/bcp-pipe: $!\n"; while (<FIFO>) { print "bcp-data: $_"; } close FIFO;