BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
conrad_thiele
Calcite | Level 5

Hi All,

 

I am trying to understand the RUN statement. Does it read above for other RUN statement and or the beginning of the file which contains a hidden line (OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;)?

 

Example of the log file in SAS Studio:

 

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
72
73 /****************************************************************/
74 /* The INFILE statement uses a Microsoft Windows path. */
75 /* */
76 /* For UNIX, Linux, SAS University Edition, and SAS on Demand: */
77 /* Change the INFILE statement to: */
78 /* infile "&path/newemps.csv" dlm=','; */
79 /* */
80 /* For z/OS: */
81 /* Change the INFILE statement to: */
82 /* infile "&path..rawdata(newemps)" dlm=','; */
83 /****************************************************************/
84
85 data work.newsalesemps;
86 length First_Name $ 12 Last_Name $ 18
87 Job_Title $ 25;
88 infile "/folders/myfolders/newemps.csv" dlm=',';
89 input First_Name $ Last_Name $
90 Job_Title $ Salary /*numeric*/;
91 run;
 

Cheers Conrad

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Your front-end (SAS Studio) sends code automatically before each of your submits that initializes this individual submit. In order to keep your log clean, log output is prevented by the first line. In line 71 (which is still "hidden"), there's another options statement that reverts this, so you get log output starting at line 72.

 

Note from Community Manager @BeverlyBrown on 6/7/21: 

For additional details, see Documentation on Suppressing Information in the SAS Log.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Your front-end (SAS Studio) sends code automatically before each of your submits that initializes this individual submit. In order to keep your log clean, log output is prevented by the first line. In line 71 (which is still "hidden"), there's another options statement that reverts this, so you get log output starting at line 72.

 

Note from Community Manager @BeverlyBrown on 6/7/21: 

For additional details, see Documentation on Suppressing Information in the SAS Log.

conrad_thiele
Calcite | Level 5
Makes sense 🙂
Quentin
Super User

Does SAS Studio give you an option to choose NOT to hide that bit of the log?  I always get nervous when stuff is hidden from me, code or otherwise.

: )

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 11773 views
  • 2 likes
  • 3 in conversation