BookmarkSubscribeRSS Feed
Bjs09f
Calcite | Level 5

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.

 

2 REPLIES 2
ChrisHemedinger
Community Manager

According to the doc, AUTHDOMAIN was added in SPD Server 4.53.  Do you have that level running in production?

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
Bjs09f
Calcite | Level 5

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to connect to databases in SAS Viya

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.

Discussion stats
  • 2 replies
  • 1413 views
  • 0 likes
  • 2 in conversation