Hi folks,
I'm new to SAS!!
Is it possile to create an MDDB?
Actually I'using this SAS code:
proc mddb data=sashelp.prdsale out=sasuser.mddb;
class prodtype product country region division;
class year quarter month / descending;
hierarchy country region division / name = 'Geographic Hierarchy';
hierarchy year quarter month / name = time display=YES;
var actual / n sum nmiss;
var predict / n sum nmiss uss min max;
run;
to create one and I receive the following error message:
"proc mddb data=sashelp.prdsale out=sasuser.mddb;
ERROR: Procedure MDDB not found"
Thanks a lot!