BookmarkSubscribeRSS Feed
monyakjt
Calcite | Level 5

Looking for help.  I am using SAS ondemand for Academics.  I clicked on a sas data set I uploaded.  Now it just reads "Opening a table" and has been doing this for about 24 hours.  I found that others have experienced this and the posts mention shutting down the VM.  I don't understand this.  I am not using any special software to access Sas ondemand (as far as I know anyway); just the browser.  Appreciate any help.  Thanks,

8 REPLIES 8
Tom
Super User Tom
Super User

How large was the dataset you uploaded?

Was it a SAS dataset? Or do you mean some other type of file?

 

Instead oif trying to open the file interactively try running some code to look at the file and just print PART of it.

For example run PROC CONTENTS on the SAS dataset to see what variables it has and how many observations.

Soi if you uploaded a file name memname.sas7bdat then you migth run something like this:

libname mylib '...path of the directory where you save the file...';
proc contents data=mylib.memname;
run;

Or run PROC PRINT for just the first few observations.

proc print data=mylib.memname(obs=3);
run;

If it is just a TEXT file, such as a CSV file, then run a data step to see what is in it.  For example a program like this will dump the first 5 lines from the file to the SAS log.

data _null_;
  infile 'fully qualified name of file'  obs=5;
  input;
  list;
run;
monyakjt
Calcite | Level 5

Thanks for the reply.

 

Your suggestion is what I should have done, I suppose.  But the problem is I can't even execute any SAS code now, because the system is stuck.  Before it was stuck on opening a table.  Now, I just tried it again, and it seems to be stuck just on logging in.  It just says "initializing" and is hanging.

SASKiwi
PROC Star

I don't know if this will help, but I suggest you delete all browsing history in your web browser, reboot your PC and then try signing in again. The SODA FAQ provides some additional things to try.

monyakjt
Calcite | Level 5

I tried what you suggested.  It did allow me to get back into SAS studio (before it got stuck on "initializing" while signing in).  But it is still stuck on "opening a table".  It is over a week, now.  I would have thought this process would have stopped on its own at some point.  Any other ideas?  Appreciate any help, thanks.

SASKiwi
PROC Star

I'd suggest trying a different web browser to see if that helps. What one are you using now?

monyakjt
Calcite | Level 5

I was using the Chrome browser.  I tried Edge, but it gave the same thing.  I contacted SAS support.  They suggested deleting cookies and cache.  I tried that, but it did not work.

 

thanks,

 

 

Tom
Super User Tom
Super User

What do you mean by "opening a table"?

Are you able to run code?

Try running something simple first.

proc print data=sashelp.class;
run;
alexjordan
Fluorite | Level 6

I have tried this one once I faced this issue.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 8 replies
  • 1430 views
  • 1 like
  • 4 in conversation