Hi All,
I have installed the new SAS grid on Linux server and getting below error while running to ODBC proc sql . I think have missed the creation of the some variable in Compute server .
Can some help me .
28 proc sql noprint;
29 connect to odbc as st (dsn='LWUKWVTI13BMT' uid='sasgriduser' pwd=XXXXXXXXXXXX);
ERROR: Could not load /sas/grid/software/SASFoundation/9.4/sasexe/sasodb (99 images loaded)
ERROR: libodbc.so: cannot open shared object file: No such file or directory
ERROR: The SAS/ACCESS Interface to ODBC cannot be loaded. The SASODB code appendage could not be loaded.
ERROR: A Connection to the odbc DBMS is not currently supported, or is not installed at your site.
NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
30 execute (Select * from dbo.stgAAHH) by st;
NOTE: Statement not executed due to NOEXEC option.
31 disconnect from st;
NOTE: Statement not executed due to NOEXEC option.
32 quit;
Hi @gwootton ,
I have already edited sasenv_local file as mentioned in the article .
Do I need to install ODBC driver separately ?
PFB below content of it .
# This file is sourced by the sasenv script in !SASROOT/bin
############################################################################
export ODBCHOME=/sas/grid/software/SASODBCDriversfortheWebInfrastructurePlatformDataServer/9.4/
export ODBCINI=/sas/grid/software/SASODBCDriversfortheWebInfrastructurePlatformDataServer/9.4/Driver/odbc.ini
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/sas/grid/software/SASODBCDriversfortheWebInfrastructurePlatformDataServer/9.4/Driver/:/usr/lib/oracle/12.2/client64/lib/:/usr/odbc/lib/
export TNS_ADMIN=/usr/lib/oracle/12.2
umask 0007
############################################################################
# End of sasenv_local
############################################################################
The SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment.
SAS technical trainer Erin Winters shows you how to explore assets, create new data discovery agents, schedule data discovery agents, and much more.
Find more tutorials on the SAS Users YouTube channel.