Just some info, credits to everyone but not me.
I will assume that you have installed MSSQL 2008 and restored databases.
Then you tried to setup ODBC and failed. If it's true then simply do following.
Open each server.ini and change
Now change "SERVER" values to either IP Address of your MSSQL Server or local address. Like following:
After that you can delete all ODBC Configuration and start server.
Note: It is recommended to turn on TCP/IP protocol for the MSSQL Instance that you will be using. (should be turned on by default)
I will assume that you have installed MSSQL 2008 and restored databases.
Then you tried to setup ODBC and failed. If it's true then simply do following.
Open each server.ini and change
to followingODBC = "SQL Native Client"
ODBC = "SQL Server"
Now change "SERVER" values to either IP Address of your MSSQL Server or local address. Like following:
orSERVER = "(local)"
orSERVER = "127.0.0.1"
orSERVER = "192.168.0.10"
orSERVER = "10.0.0.15"
like followingSERVER = "[COMPUTERNAME]\[MSSQLINSTANCENAME]"
Note: the name of your mssql instance might be different.SERVER = "jM2-PC\MSSQLSERVER"
After that you can delete all ODBC Configuration and start server.
Note: It is recommended to turn on TCP/IP protocol for the MSSQL Instance that you will be using. (should be turned on by default)