When you create an SPD Engine data set, many component
files can also be created. SPD Engine component files are stored with
the following naming conventions:
filename.mdf.0.p#.v#.spds9
filename.dpf.fuid.p#.v#.spds9
filename.idxsuffix.fuid.p#.v#.spds9
filename.hbxsuffix.fuid.p#.v#.spds9
identifies the metadata
component file.
identifies the partitioned
data component files.
is the unique file
ID, which is a hexadecimal equivalent of the primary (metadata) path.
identifies the segmented
view of an index, where suffix is the name
of the index.
identifies the global
view of an index, where suffix is the name
of the index.
denotes a SAS 9 SPD
Engine component file.
Table 2.2 shows the
data set component files that are created when you use this LIBNAME
statement and DATA step:
libname sample spde '/DATA01/mydir'
datapath=('/DATA01/mydir' '/DATA02/mydir')
indexpath=('/IDX1/mydir');
data sample.mine(index=(ssn));
do i=1 to 100000;
ssn=ranuni(0);
end;
run;
Data Set Component Files
|
|
mine.dpf.000032a6.0.1.spds9
|
|
mine.dpf.000032a6.1.1.spds9
|
|
mine.dpf.000032a6 .n-1.1.spds9
|
|
mine.dpf.000032a6. n.1.spds9
|
|
mine.hbxssn.000032a6.0.1.spds9
|
global index data set
for variable SSN
|
mine.idxssn.000032a6.0.1.spds9
|
segmented index data
set for variable SSN
|