BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.

I am tested VS Code SAS Programming and the sql proc shows me the following error.

VSCode "ERROR: Job did not complete in allotted time"

 

Code VScode:

proc sql;
    connect to oracle as cnxora_ (user='xxxx' pw='xxxx' path='xxx' connection=global);
   
   
    create table work.tmp_ as
    select * from connection to  cnxora_ (
    SELECT * FROM XXXXX);
   
    disconnect from cnxora_;
    run;
   

    proc print data=work.tmp_;
    run;
   
1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

If the same program works OK in another SAS IDE like SAS Studio or EG then it's safe to assume this is a VSCode-specific problem. If not the problem is likely to be a database connection timeout.

View solution in original post

3 REPLIES 3
SASKiwi
PROC Star

If the same program works OK in another SAS IDE like SAS Studio or EG then it's safe to assume this is a VSCode-specific problem. If not the problem is likely to be a database connection timeout.

danny_velasquez
SAS Employee

The program responds well in SAS StudioV, taking about 20s to complete.

Thanks, it's probably a SAS tools bug in VSCode.

SASKiwi
PROC Star

@danny_velasquez - Worth reporting in a track to Tech Support then.

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 Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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