Hey guys,
I have been using SAS for a year now. Every time I execute a query, SAS log processing starts from
This looks very strange. It's like somehow SAS Studio has things backwards. I think it tries to hide the log from much of the "wrapper code" it generates. In this case, it is showing you the log from the wrapper code but then hiding your own code. This happens with every submission, even if you just code:
data want;
set sashelp.class;
run;
?
If you log out, close your browser, and then open it and log in again to start a fresh SAS session, you have the same problem?
I am attaching the LOG for the query.
It has been like this for 3 weeks now. I tried these things but didn't work.
I am really looking for anything now just want to see my logs T_T
What version of SAS Studio are you using? Looks like you need to change your SAS Studio preferences to see your entire SAS log.
I suggest you open a Tech Support track for this. They are in the best position to figure out what is going wrong for you.
Question: What do you think NONOTES means as an option?
Hi whymath,
I get the understanding of this but when I tried using OPTIONS NOTES, it didn't change anything in log.
I have a question regarding this:
If Option nonotes nosource nosyntaxcheck prevent it from printing to log then should nosyntaxcheck also stop it from checking/printing the syntax error. If so it is printing the syntax errors.
Please help me how to put options in SAS if I am doing anything wrong to correct my code logs.
Your OPTIONS statement in line 73 is not one of the default statements SAS Studio sends with every submit; it is either part of your code or set in the individual Studio options.
Remove it, so you get a full log to help you in fixing your code.
It sounds like you have a repeatable problem that is effecting you, but not effecting your colleagues who use the same server. I would suggest contacting SAS technical support for help. They will know more about how Studio hides its log, and what might be going on to make Studio accidentally show its log (from the Studio wrapper) but hide your log (from the main code).
Please run the following code snippit in a fresh sas studio session and analise the log.
OPTIONS NOTES STIMER SOURCE SYNTAXCHECK;
title1 "OPTIONS NOTES STIMER SOURCE SYNTAXCHECK;";
proc print data=sashelp.class(obs=1);
%put This is the procentput from the first proc print;
%put It executes with the options;
%put notes stimer source syntaxcheck;
run;
OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
title1 "OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;";
proc print data=sashelp.class(obs=2);
%put this is the procentput from the second proc print;
%put It executes with the options;
%put nonotes nostimer nosource nosyntaxcheck;
run;
title;
If you still think something is wrong after that then please copy and paste your logfile in an 'insert SAS code"-object in a post.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!