Functions and CALL Routines |
Returns the SAS data set name that is associated with a data set
identifier.
-
data-set-id
-
is a numeric variable that specifies
the data set identifier that is returned by the OPEN function.
DSNAME returns the data set name that
is associated with a data set identifier, or a blank if the data set identifier
is not valid.
This example determines the name of the SAS data set
that is associated with the variable DSID and displays the name in the SAS
log.
%let dsid=%sysfunc(open(sasuser.houses,i));
%put The current open data set
is %sysfunc(dsname(&dsid)).;
Copyright © 2011 by SAS Institute Inc., Cary, NC, USA. All rights reserved.