BookmarkSubscribeRSS Feed
Ying
Fluorite | Level 6
Hello,

Could you help for my code? Thank you! Y

TBL1 multiple Character ID
TBL2 has distinct Numeric PersonID

ERROR: CLI prepare error: Communication link failure
SQL statement: SELECT "Consumer_id", " PersonID” FROM TBL2 .
ERROR: PROC SQL runtime error for operation=sqxsrc.
ERROR: An error has occurred.


Proc sql;
Select
b.Consumer_id,
a.email_addr
from
TBL1 as a,
TBL2 as b
Where b. PersonID = input(a.ID, best8.);
Quit;
2 REPLIES 2
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello Ying,

I ran your code on my EG 4.2 and got the expected result without any errors or warnings. It means that that the problem is not related to SAS programming but to something else, e.g. interaction with server.

Sincerely,
SPR
Ying
Fluorite | Level 6
Thank you so much, SPR! I rerun the code and after 16 hours (large dataset), I got it.

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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