in reply to
connecting Perl with MS SQL Server on NT using ODBC
if you're running the script on unix and trying to connect to an NT-based SQL Server, you could try and use the FreeTDS library...
a) in the FreeTDS "interfaces" file, configure the connection to the SQL Server like this :
myserver
query tcp tds4.2 10.0.2.1 1433
b) in your Perl script, include code which goes something like this :
$ENV{'SYBASE'} = "/freetds" unless $ENV{'SYBASE'};
my $dbh;
$dbh = DBI->connect("dbi:Sybase:server=myserver",userid,password);
hth