Link to home
Start Free TrialLog in
Avatar of winman_soft
winman_soft

asked on

Perl and MSSQL connection : DBI:ODBC

I am using OTRS ticketing services , currently it is run on mysql database .
I am trying to shift it to MSSQL database , all the configuration is done but when I load the main page (index.pl) I get the following error : [Microsoft][ODBC SQL Server Driver][DBMSLPCN]SQL Server does not exist or access denied.

The connection string used is : $Self->{'DatabaseDSN'} = "DBI:ODBC:driver={SQL Server};Server=$Self->{DatabaseHost},1433;database=$Self->{Database}";
$Self->{'Database::Type'} = 'mssql';

Is it somethin to do with DBI:ODBC driver ? how do i install it?
Avatar of lcohan
lcohan
Flag of Canada image

I think you don't have a ODDBC driver and data source installed/configured for OTRS to work with SQL Server and please see more details at link below "Install OTRS using SQL Server 2008"

http://forums.otrs.org/viewtopic.php?f=62&t=9405
ASKER CERTIFIED SOLUTION
Avatar of winman_soft
winman_soft

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of winman_soft
winman_soft

ASKER