Hi all
can you know why i am getting the bellow Error
Error :
SQL##f - SqlState: IM002, ErrorCode: 0, ErrorMsg: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
ODBC CONNECT TO Service (XUserId is fTRESZZODbXCGZFMNLYEXVFOW, XPassword is ZOSMdIRNJbaMVUVMXbIEDYEG)
Thanks
Madhu
Dear Madhu,
The error clearly tells you that the data source name is not found. Make sure that you have created the ODBC connection and tested that connection.
Regards,
Kaushik Solanki
Hi,
You need to install ODBC driver in your PC. Install it according to your windows version and 32 or 64 bit.
Hope it helps.
Hi Madhu,
You will need to create the ODBC connection first.
Also check that the Drivers is installed (you can get the list of installed drivers by going to ODBC Data Source Administrator > Drivers tab).
Dear Madhu,
You will have to create an ODBC connection on server.
For which you would need to install the appropriate database drivers.
I would recommend that you contact your IT team and ask them to create one database connection for you.
Look below link for how to create an ODBC connection.
Regards,
Kaushik Solanki
The disadvantage of ODBC is that you have to define a so-called DSN in the system on every platform where you plan to use this data connection, and using Windows software tools. OLEDB doesn't have this annoying disadvantage because all data connection parameters are defined and passed in the CONNECT statement.
To define an ODBC DSN on the remote machine, you must log in into that machine using Admin privileges, open Start->Administrative tools->Data Sources (ODBC) (this may be different on your remote machine, depending on the Windows release) and start configuring a new System DSN with the exact same name that your CONNECT string expects. Make sure that an ODBC driver for the target database is installed on the remote machine before trying to define an ODBC DSN.
Best,
Peter