My coworker is using SAS Enterprise 6.1. I am using 8.3.
I am unable to use this program code to connect to the database - my coworker is able to us it.
Is there something different between the 2 versions language here?
libname conf odbc dsn=mainframe
user=&uname
password=&passwd
schema=conformed
read_lock_type=nolock;
Heres the error.
WARNING: Apparent symbolic reference UNAME not resolved.
WARNING: Apparent symbolic reference PASSWD not resolved.
ERROR: CLI error trying to establish connection: Unable to retrieve error message.
ERROR: Error in the LIBNAME statement.
*****
As an alternative I am able to connect in SAS using this.
libname conf odbc complete="driver=SQL Server;
database=mainframe;
server=servername"
schema=conformed;