To validate that the SAS_COMPILEUDF, SAS_COPYUDF, SAS_DIRECTORYUDF,
and SAS_DEHEXUDF functions
are registered properly under the SASLIB schema in the specified database,
follow these steps.
-
Use psql to connect
to the database.
You should receive the
following prompt.
databasename=#
-
At the prompt, enter
the following command.
select prosrc from pg_proc f, pg_namespace s where f.pronamespace=s.oid
and upper(s.nspname)='SASLIB';
You should receive a
result similar to the following:
SAS_CompileUDF
SAS_CopyUDF
SAS_DirectoryUDF
SAS_DehexUDF