BookmarkSubscribeRSS Feed
Elliott
Obsidian | Level 7

Is there an easy way with a sas query to evaluate the contents for a directory for a daily file for the previous month.

 

I have a monthly program the will roll up all the daily files.  But before I run that code I want a quick query to check that there is a daily file for each day of the previous month.  I have been doing it manually and of course I missed a day where the daily files did not get created, so I thought there should be a query that could do this quickly and easily.  Is there?

 

Thanks in advance,

Elliott

7 REPLIES 7
Reeza
Super User
So you have a folder and you expect files to be listed in the folder, one for every day of the month? Is it Unix or Windows? Do you have XCMD? Yes, there are queries that could be easily run, but you need to provide more details. For example how do you know a file exists for a particular day?
Shmuel
Garnet | Level 18

Assuming all your daily datasets have same format name,

you can check the listed members of a library in sashelp.vtable:

 

%let mm2check = 201804;   /* yyyymm */
data mm_list;
  set sashelp.vtable;
        where libname = <lib name> and
        memname <check name that fit the format> and
        put(crdate, yymmddn6.) = "&mm2check";
dd = day(crdate);
wd = weekday(crdate); run;

/* create skilton of 31 days */
data days; do dd=1 to 31; output; end; run;

/* list missing days */
proc sql;
select dd from days where dd not in (select dd from mm_list);
quit;

To check a formated name of members use either SUBSTR() or %LIKE or any other text functions.

Elliott
Obsidian | Level 7

There is a daily process reads in a .txt files and create the daily datasets.  Sometimes the process may fail and the datasets do not get created.  Usually a weekend server outage.   This is on SAS Grid Linux environment.  the data set name is us_call_level_20180401.sasbdat7.  One for each day of the month.  During the first week of the next month I will run a program to combine all the days of data to one monthly dataset called us_call_level_mnth_201804.  Before I do that I need to make sure no days are missing.  The query that evaluates for a daily file each month needs to account for how many days are in the month being evaluated.  For the roll up of March there needs to be a file for days 1 - 31, for the April roll up needs to know that there is only days 1 - 30.  Or if it is a leap year that there should be 29 days in Feb.    So if a day is missing I would need to throw an error and provide the date that is missing so an adhoc process can be run to create the missing day(s) datasets.  I would like to automate this process so I don't have to do the monthly review and roll up adhoc.  Then the process could be put in our scheduler.  If I had a query that could check for a dataset for each day of the month being evaluated, then with the successful completion that would trigger the monthly roll up program.  Does that makes sense?

 

Thanks to everyone trying to help me figure this out.

 

Shmuel
Garnet | Level 18

I understand that you know how to calculate the number of days in a month.

I would do it by: 

%let run_on = 201804;
data _null_;
    days = intnx(input(cat("&run_on" , "01"),yymmdd8.),1) - 1;
run;

then use in same or other step a loop to chrck does a file exist using exist() function.

Maybe even check the NOBS of the dataset and is it reasonable.

Finally assign return code to SYSCC where 0=OK, 1 to 4 means warning, 5 or more means error.

Use it in scheduler to decide either to continue or stop.

 

 

 

Reeza
Super User
Why wouldn't your process alert you to the fact that it failed. I think you should fix the source here, not account for the issue.
Reeza
Super User
I assumed these were text files...if they're SAS data sets its a different question.
Shmuel
Garnet | Level 18

@Reeza you are absolutely right.

 

If it is a directory of text files it can be done using:

-  dopen() function to open a directory

-  check filenames to fit the format and maybe to month and date

if that not enough:

-  fopen() function to open a filename

-  fattr() function to check file attributes including date created.

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
  • 7 replies
  • 933 views
  • 0 likes
  • 3 in conversation