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;
... View more