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.
Avertissement important
Les codes et exemples fournis sur WeAreCAS.eu sont à but pédagogique. Il est impératif de ne pas les copier-coller aveuglément sur vos environnements de production. La meilleure approche consiste à comprendre la logique avant de l'appliquer. Nous vous recommandons vivement de tester ces scripts dans un environnement de test (Sandbox/Dev). WeAreCAS décline toute responsabilité quant aux éventuels impacts ou pertes de données sur vos systèmes.
SAS et tous les autres noms de produits ou de services de SAS Institute Inc. sont des marques déposées ou des marques de commerce de SAS Institute Inc. aux États-Unis et dans d'autres pays. ® indique un enregistrement aux États-Unis. WeAreCAS est un site communautaire indépendant et n'est pas affilié à SAS Institute Inc.
Ce site utilise des cookies techniques et analytiques pour améliorer votre expérience.
En savoir plus.