in reply to Re^2: Question about joins?
in thread Question about joins?

I would reccomend an on the fly connect, in order to reduce dependence on the DSN being setup.
my $dbh = DBI->connect('dbi:ODBC:driver=SQL Server;server=192.168.x.x; +database=My Database;app=my database application',$user,$pass);

Grygonos