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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 431 views
  • 0 likes
  • 2 in conversation