Sorry if I just necroposted this thread, but......

Originally Posted by
gigabyte
Those errors are most likely caused by mismatching System DSN settings in the ODBC. To fix it, you'll need to make sure those settings match the ones in the global.cfg file, or the other way around.
To make things easy, clear all entries related to the server in your System DSN list and run odbc_x64.reg, assuming you're on a 64-bit system. If you didn't edit any of the entries that were added using the .reg file, then skip this step.
After that, open your global.cfg and scroll to the bottom and edit the settings like so:
Code:
################################################################################
# Database Settings 1 - PreServer
################################################################################
$PRE_ODBC_DSN atum_pre_server_dsn
$PRE_ODBC_UID atum
$PRE_ODBC_PASSWD callweb
################################################################################
# Database Settings 2 - ServerGroup(IMServer, FieldServer, LogServer, NPCServer)
################################################################################
$SERVER_GROUP_ODBC_DSN atum_group_server_dsn
$SERVER_GROUP_ODBC_UID atum
$SERVER_GROUP_ODBC_PASSWD callweb
################################################################################
# Database Settings 3 - Log DB Server(LogServer)
################################################################################
$LOG_SERVER_GROUP_ODBC_DSN atum_group_log_server_dsn
$LOG_SERVER_GROUP_ODBC_UID atum
$LOG_SERVER_GROUP_ODBC_PASSWD callweb
################################################################################
# Database Settings 3 - External Authentication
################################################################################
$IS_EXTERNAL_AUTHENTICATION = FALSE
$EXT_AUTH_ODBC_DSN atum_external_authentication_dsn
$EXT_AUTH_ODBC_UID atum
$EXT_AUTH_ODBC_PASSWD callweb
This is so that the settings match the ones entered by the .reg file. You can also change the DSN settings to whatever you like, but make sure they match the ones in the ODBC, and that the other settings in the ODBC are correct, otherwise the server will keep complaining.
Hope this helps.