What is the best way using Perl to take a txt file with 1 million rows and import it into SQL Server 2005?
I can already do this with C# using SqlBulkCopy. I need to do this in Perl in order to run it from a linux box.
I have tried BCP and it has issues connecting to SQL Server 2005. It uses bad join statements.
I tried freetds. Is there any other proven method for doing a fast bulk insert from Perl to SQL Server 2005. In C# I can do 1 million rows in 1 minute.
I can already do this with C# using SqlBulkCopy. I need to do this in Perl in order to run it from a linux box.
I have tried BCP and it has issues connecting to SQL Server 2005. It uses bad join statements.
I tried freetds. Is there any other proven method for doing a fast bulk insert from Perl to SQL Server 2005. In C# I can do 1 million rows in 1 minute.