BookmarkSubscribeRSS Feed
LAtwood
Calcite | Level 5

I am trying to update a table via odbc with a temporary table I created in SAS Enterprise Guide.

So far I have the below code, but it is not working:

libname imcsrs82 odsbc noprompt="Driver={Ingres 9.2}; Server=imcsrs82; Database=imcsdb_dev; Uid=****; Pwd=****";

proc sql;

update imcsrs82.pay_epp_lkup a

set

ytd_earnings = a.ytd_earnings + (select b.qtr_amount from work.QUERY_FOR_IMCS_EPP_QRT B

where a.clock_num=b.clock_num and a.pay_yr = b.pay_year);

run;

I receive the error No cursor name available.  Any help would be appreciated.

Thanks

3 REPLIES 3
SASKiwi
PROC Star

Run your program again with this statement added: options sastrace = ',,,d' SASTRACELOC = SASLOG;

Then post your log which will contain a lot more details of what is happening.

LAtwood
Calcite | Level 5

I have attached the log to my previous post.


SASKiwi
PROC Star

Perhaps you could try specifying a cursor type like KEYSET_DRIVEN:

http://support.sas.com/documentation/cdl/en/acreldb/65247/HTML/default/viewer.htm#p1pdx0nznnifhhn1rw...

Might also be worth raising a Tech Support track.

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
  • 3 replies
  • 1396 views
  • 0 likes
  • 2 in conversation