The SQL DICTIONARY.INFOMAPS
table contains a row for each information map that is available through
the Information Maps engine. The table contains the following variables:
Information Maps engine
libref for the information map
SAS name for the information
map
Location of the information
map within the metadata server
Description of the
information map
The following example
shows how you can query the DICTIONARY.INFOMAPS table to retrieve
information about the available information maps:
libname mymaps infomaps mappath="/Users/myUserID/My Folder";
proc sql;
select i.mapname, i.path
from DICTIONARY.INFOMAPS as i;
Output from DICTIONARY.INFOMAPS Table Query
Information Map Name Information Map Path
-----------------------------------------------------------------------------
Employee Statistics Sample /Users/myUserID/My Folder