PING  0.9
Statistical data handling and processing in production environment
_DSTEST0

Test dataset #0.

%_dstest0;
%_dstest0(lib=, _ds_=, verb=no, force=no);

Contents

_dstest0 is an empty table.

Arguments

  • lib : (option) output library; default: lib is set to WORK;
  • verb : (option) boolean flag (yes/no) for verbose mode; default: no;
  • force : (option) boolean flag (yes/no) set to force the overwritting of the test dataset whenever it already exists; default: no.

Returns

_ds_ : (option) the name (library+table) of the dataset _dstest0.

Note

In practice, it runs:

DATA _dstest0; STOP; RUN;

Example

To create dataset #0 in the WORKing directory and print it, simply launch:

%_dstest0;
%ds_print(_dstest0);

See also

%_dstestlib.