Valid in: | Anywhere |
Category: | Data Access |
With this access method, you can read any type of catalog entry, but you can write only to entries of type LOG, OUTPUT, SOURCE, and CATAMS.
If you want to access an entire catalog (instead of a single entry), you must specify its two-level name in the catalog parameter.
catalog-options can be any of the following:
filename mydata catalog 'sasuser.data.update.catams'; /* write data to catalog entry update.catams */ data _null_; file mydata; do i=1 to 10; put i; end; run; /* read data from catalog entry update.catams */ data _null_; infile mydata; input; put _INFILE_; run;