Hi all,
Trying to use AUTHDOMAIN to connect to servers to query against tables. Have this program below running in preproduction but not in our prod environment. Have not seen a difference in either for SAS management console. Does anyone know how to resolve this error or seen before?
LIBNAME test1 DB2 DATASRC="test" AUTHDOMAIN="DB2Auth" SCHEMA=test;
proc sql;
select count(1) from test1.dealer;
quit;
%let spds_port =xxxx;
%let spds_host =test.com;
LIBNAME test2 SASSPDS schema="test1" AUTHDOMAIN="SPDSAuth" Serv="&spds_port" HOST="&spds_host" ;
proc sql;
select count(1) from test2.dealer;
quit;
ERROR: Libname TEST2 is not assigned.
ERROR: Error in the LIBNAME statement.
ERROR 278-63: The option AUTHDOMAIN is not implemented in the SASSPDS engine.
Thanks in advanced, very stuck on this.
According to the doc, AUTHDOMAIN was added in SPD Server 4.53. Do you have that level running in production?
Thanks Chris, I checked and both of our SPD Servers are 4.52, which seems strange that it would even work on the PreProduction server, but not the Production one. Doesn't make too much sense to me..
Ben
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.