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.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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