We received this question from a member of the community:
Can you recommend a good tool to transfer large amount of data from SQL Server to the MySQL infobright table?
I want to load a few hundred giga bytes data for the initial test.
The simplest option is to export your data to a CSV file using the “bcp” command line utility for SQL Server. Transfer the file to the Infobright server. Then load the file using the Infobright loader.
To avoid the file overhead, you can use a named pipe (FIFO) instead of a file. Create the pipe on the local server where IB is running. Launch a LOAD DATA INFILE command to read from the named pipe.
If you need to stream data from a remote Unix machine, you can use the netcat (nc) command to read data from the network and stream it to the named pipe. See “man nc” for more info.
Best regards
Geoffrey

