A classic case involves the error indicating that the engine cannot be found, often occurring when using PROC SQL via ODBC.
The Symptom
The scenario is as follows: you have just configured a new data source (DSN) for SQL Server on your machine. The connection test in the Windows ODBC administration tool is successful.
proc sql ;
connect to odbc as MonAlias (datasrc=MonDSN user=&username password=&passwrd);
create table work.testtable as
select * from connection to MonAlias
(Select * from [database]);
quit;
1
PROC SQL ;
2
connect to odbc as MonAlias (datasrc=MonDSN user=&username password=&passwrd);
ERROR: The TXEVER engine cannot be found. ERROR: A Connection to the TxEVER DBMS is not currently supported, or is not installed at your site.
Causes and Solutions
If your connection string has not changed, the problem is almost always related to the Windows environment or software architecture. Here are the two essential points to check.
Sometimes, the solution is much simpler. After configuring new environment variables or new system ODBC sources on a freshly installed machine, these changes may not be immediately recognized by all services, or a temporary conflict might block access to the driver.
In several documented cases, a simple full reboot of the computer is enough to "unblock" the situation. If a standard restart doesn't work, a "Cold Reboot" (complete shutdown, waiting a few seconds, then restarting) may be necessary to properly reset the connection services.
When facing an "Engine cannot be found" error on a new machine:
If the architecture is correct, restart your computer. This is often the missing step after an initial ODBC configuration.
Important Disclaimer
The codes and examples provided on WeAreCAS.eu are for educational purposes. It is imperative not to blindly copy-paste them into your production environments. The best approach is to understand the logic before applying it. We strongly recommend testing these scripts in a test environment (Sandbox/Dev). WeAreCAS accepts no responsibility for any impact or data loss on your systems.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.