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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3656 views
  • 0 likes
  • 2 in conversation