Freewind SQL Converter

Installation:
To run this program you need .Net Framework 2 to be installed. You can download it from here or here.


Just extract the archive to your PC and run the setup.exe file. Install the application After the installation finished run the application from your desktop.  

Converting table:


How to use SQL Converter in command line:
The format of the command is:

for Windows authentication use:
sqlconveter.exe [server] [database] [table] [target path] [type]

for SQL authentication use:
sqlconveter.exe [server] [database] [table] [target path] [type] [username] [password]

Example:
sqlconverter.exe SQLServer MyDB MyTable "c:\Output\mytable.csv" csv
sqlconverter.exe SQLServer MyDB -a "c:\Output" txt
sqlconverter.exe SQLServer MyDB MyTable "c:\Output\mytable.csv" csv admin pass

 

What is the difference between the TXT and CSV formats?
TXT format is a regular text file - the text in the target file will be separated by a comma (",") symbol.
CSV format its a special text file - text in the target file will be separated by a semicolon symbol (";"). Each value that contains special characters like inverted commas, spaces or commas will be marked by additional inverted commas.