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

hi, not sure why proc print is not printing and the job keeps running.  proc freq can't print either. 

here is a sample code;

 

ibname a '/export/sas-viya/homes/viya_admin/casuser/';

 

PROC IMPORT DATAFILE= "/export/sas-viya/homes/viya_admin/casuser/Sample-Superstore-Subset-Excel.xlsx"
OUT= WORK.orders
DBMS=XLSX
REPLACE;
SHEET="Orders";
GETNAMES=YES;
RUN;

proc contents data=orders;run;

proc freq data=orders;
table 'product category'n/list missing;
run;

proc print data=orders (obs=10);run;

 

thanks!

 

--Bill

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

Did you ever run anything successfully in this environment?

data _null_;
  put 'Hello World';
run;

Reset the session and try again.

There isn't much we can tell you from the information available.

View solution in original post

2 REPLIES 2
Patrick
Opal | Level 21

Did you ever run anything successfully in this environment?

data _null_;
  put 'Hello World';
run;

Reset the session and try again.

There isn't much we can tell you from the information available.

BillBerkeley
Fluorite | Level 6
I reset and it ran now. Still new to this environment but it does not seem to be stable as the desktop environment. Deployment sometimes work sometimes don’t on Azure. And once getting in Viya, I encountered this freeze right out of the start. Doesn’t make me feel good why I have to pay for SAS and Azure when I can just use colab and python. Much as I love SAS. Perplexing…

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!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 549 views
  • 1 like
  • 2 in conversation