Connecting to Sql Server from Unix or Linux with FreeTDS
To connect to Sql Server from *nix environment, you can use JDBC (Java), Perl’s DBI and DBD packages, unixODBC, etc. You can also use another open source tool called FreeTDS.
TDS stands for Tabular Data Stream. It is a protocol that defines how data is transmitted between computers. Both Sybase and Sql Server implement TDS. The detailed implementation may be different now for Sybase and Microsoft, but I don’t think the basic principal has changed much over the years. FreeTDS is a tool that is written on the TDS protocol. It works both with Sql Server 2000 and Sql Server 2005. It also works with Sybase.
A few years ago I helped out a LAMP (Linux, Apache, MySql, PHP) project. The web application was working fine. Later on there was a need to generate web reports based on data from Sql Server 2000. So I helped setting up FreeTDS on RedHat Linux to solve that problem.
Ever since Sql Server 2005 came out, I’ve been meaning to test it to see if it works with Sql Server 2005. I finally did it today. I am happy to report that it does work. Here is my procedure on Cygwin:
1. wget http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz (Note: the link to the tar file may be different) 2. tar -xvf freetds-stable.tgz (Note: your file name maybe different) 3. cd freetds-0.6.4 (Note: your folder name maybe different) 4. ./configure --with-tdsver=8.0 (Note: it is important to have this tdsver=8.0 option) 5. make 6. make install
To verify you did it successfully, launch tsql on the command line. tsql is a command line utility that comes with FreeTDS. It does not have a lot of command line switches. The few it has are very similar to osql and sqlcmd.
For example, you can try:
tsql -S MySqlServer -U sa
and you will be prompted for password.
Once you are in, issue some command. For example, you can try
select name from sysdatabases (on Sql Server 2000) or
select name from sys.databases (on Sql Server 2005)
and see if you get results back.




