BookmarkSubscribeRSS Feed
sas1002
Calcite | Level 5

I am trying to suppress the infile information from the log. Does anyone know how to remove the Owner Name=, Last Date Modified=, Access Permissions=, etc such as below? I would still like to see other notes (nonotes option removes too much).

 

 

NOTE: The infile
'YOUR-DATA-FILE' is:

File
Name=YOUR-DATA-FILE,
Owner Name=userid,Group Name=dev,
Access Permission=rw-r--r--,
File Size (bytes)=1998

2 REPLIES 2
ballardw
Super User

It might help to describe what you are doing to generate that message.

 

 

data_null__
Jade | Level 19

Perhaps the GENERIC option is what you need.

 

6    options generic=1;
7    filename temp temp;
8    data _null_;
9       file temp;
10      put 'x';
11      run;

NOTE: The file TEMP is:
      (system-specific pathname),
      (system-specific file attributes)

NOTE: 1 record was written to the file (system-specific pathname).
      The minimum record length was 1.
      The maximum record length was 1.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds

If you want to see the file name you can write it your self.

 

67   options generic=1;
68   filename temp temp;
69   data _null_;
70      length Filename $128;
71      if _n_ eq 1 then putlog 'NOTE: ' Filename=;
72      file temp filename=filename;
73      put 'x';
74      run;

NOTE: The file TEMP is:
      (system-specific pathname),
      (system-specific file attributes)

NOTE: Filename=C:\Users\DATA~1.NUL\AppData\Local\Temp\2\SAS Temporary Files\_TD8420_HQ-SASPROD01_\#LN00016
NOTE: 1 record was written to the file (system-specific pathname).
      The minimum record length was 1.
      The maximum record length was 1.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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