I am trying to connect Amazon Redshift database by using SAS/ACCESS interface to ODBC
I encoded my redshift password and providing encoded password in libname statement.
libname source odbc
user="milind"
password="{SAS005}1244C53A7CA4054EA8318............"
datasrc="RWE_pharmetrics_DSN"
schema="public";
But I am getting below CLI error in the log
458
459 libname source odbc user="milind"
459! password=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
459! XXX datasrc="RWE_pharmetrics_DSN" schema="public";
ERROR: CLI error trying to establish connection: [Amazon][Amazon Redshift] (10) Error occurred
while trying to connect: [SQLState 28000] FATAL: password authentication failed for user
"milind"
ERROR: Error in the LIBNAME statement.
When I provide direct password (without encoding), it works well.