SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
milts
Pyrite | Level 9

I'm having trouble connecting to a SQL Server 2016 DB when the string password is encoded.

 

This works.

libname test2 odbc noprompt="server=SRV;Driver=SQL Server;uid=sa;pwd=mypwd;database=DB";

 

But this doesn't work.

libname test2 odbc noprompt="server=SRV;Driver=SQL Server;uid=sa;pwd='{SASENC}12345F';database=DB";

 

Appreciate any help. Thank you very much!

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

What's your error message?

 

There's an old SAS Note that says you can't use encrypted passwords in connection strings:

 

http://support.sas.com/kb/31/602.html

 

Don't know if it is still the case or not. Maybe you could try moving the user and password outside of NOPROMPT in separate parameters as encryption in the PASSWORD parameter is allowed.

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

What's your error message?

 

There's an old SAS Note that says you can't use encrypted passwords in connection strings:

 

http://support.sas.com/kb/31/602.html

 

Don't know if it is still the case or not. Maybe you could try moving the user and password outside of NOPROMPT in separate parameters as encryption in the PASSWORD parameter is allowed.

milts
Pyrite | Level 9

You are correct it seems including the encoded password does not work in the connection string. I had to do a manual work around that picks up the password from a file while supressing the log when assigning the librefs.

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2564 views
  • 1 like
  • 2 in conversation