mirror of
https://github.com/sasjs/core.git
synced 2026-06-08 20:10:20 +00:00
chore: updating all.sas
This commit is contained in:
@@ -24216,15 +24216,12 @@ run;
|
|||||||
The function uses `dosubl()` to run the `table.fileinfo` action, for the
|
The function uses `dosubl()` to run the `table.fileinfo` action, for the
|
||||||
specified library, filtering for `*.sashdat` tables.
|
specified library, filtering for `*.sashdat` tables.
|
||||||
|
|
||||||
IMPORTANT NOTE - The results are cached in a WORK table (&outprefix._&lib).
|
Results are cached in a WORK table (&outprefix._&lib). If that table
|
||||||
If that table already exists, it is queried instead, to avoid the
|
already exists it is queried directly to avoid the dosubl() overhead.
|
||||||
dosubl() performance hit.
|
To force a rescan, use a new `&outprefix` value or delete the cache
|
||||||
|
table before calling.
|
||||||
To force a rescan, just use a new `&outprefix` value, or delete the table(s)
|
|
||||||
before running the function.
|
|
||||||
|
|
||||||
@param [in] libds library.dataset
|
@param [in] libds library.dataset
|
||||||
@param [in] usecache= (1) Set to 0 to rebuild the cache
|
|
||||||
@param [out] outprefix= (work.mfv_existsashdat)
|
@param [out] outprefix= (work.mfv_existsashdat)
|
||||||
Used to store current HDATA tables to improve subsequent query performance.
|
Used to store current HDATA tables to improve subsequent query performance.
|
||||||
This reference is a prefix and is converted to `&prefix._{libref}`
|
This reference is a prefix and is converted to `&prefix._{libref}`
|
||||||
@@ -24235,14 +24232,13 @@ run;
|
|||||||
@author Mathieu Blauw
|
@author Mathieu Blauw
|
||||||
**/
|
**/
|
||||||
|
|
||||||
%macro mfv_existsashdat(libds,usecache=1,outprefix=work.mfv_existsashdat
|
%macro mfv_existsashdat(libds,outprefix=work.mfv_existsashdat);
|
||||||
);
|
|
||||||
%local rc dsid name lib ds;
|
%local rc dsid name lib ds;
|
||||||
%let lib=%upcase(%scan(&libds,1,'.'));
|
%let lib=%upcase(%scan(&libds,1,'.'));
|
||||||
%let ds=%upcase(%scan(&libds,-1,'.'));
|
%let ds=%upcase(%scan(&libds,-1,'.'));
|
||||||
|
|
||||||
/* if table does not exist, create it */
|
/* if cache table does not exist, build it */
|
||||||
%if &usecache ne 1 or %sysfunc(exist(&outprefix._&lib)) ne 1 %then %do;
|
%if %sysfunc(exist(&outprefix._&lib)) ne 1 %then %do;
|
||||||
%let rc=%sysfunc(dosubl(%nrstr(
|
%let rc=%sysfunc(dosubl(%nrstr(
|
||||||
/* Read in table list (once per &lib per session) */
|
/* Read in table list (once per &lib per session) */
|
||||||
proc cas;
|
proc cas;
|
||||||
|
|||||||
Reference in New Issue
Block a user