SAS uses postgres DB for shared services as a default choice. The installation file is located under SAS home -> SAS Web Infrastructure Platform Data Server. The psql is located under the bin directory. PSQL is the postgres client software used to connect to postgre database. In simple words it is similar to SQL developer but psql is a command line interface.
psql: symbol lookup error: psql: undefined symbol: PQconnectdbParams
Library name - libpq.so.5
Create symbolic link of this library to /usr/lib and /usr/lib64
psql location in SAS:
Issue:
When running psql we get following error message.psql: symbol lookup error: psql: undefined symbol: PQconnectdbParams
Solution:
This can be solved by linking a library to usr lib.Library name - libpq.so.5
Create symbolic link of this library to /usr/lib and /usr/lib64
Comments
Post a Comment