Hi All,
User is getting below ERROR . He has correct user ID and password and updated through SAS logon manager.
Even tried with TD user ID and password in the libname but no luck. Tried in TD sql assistant with same ID and password and it worked.
libname test teradata user=<user_ID> password=”password” database=test fastload=yes;
libname test teradata AUTHDOMAIN="TeradataAuth" database=test fastload=yes;
User has special char (double quote) in the TD password. like Pass"31. is it with password?
how can we make it work as TD sql assistant is accepting this password but not through SAS.
If you are testing the connection like this:
libname test teradata user=<user_ID> password=”password” database=test fastload=yes;
Then try single quotes around the password string. BTW even your double quotes don't look right as they should look like this: "
libname test teradata user=<user_ID> password='password' database=test fastload=yes;
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.