mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-12 11:44:36 +00:00
26 lines
514 B
SAS
26 lines
514 B
SAS
resetline;
|
|
|
|
filename packages "C:\SAS_PACKAGES\SPF";
|
|
%include packages(SPFinit.sas);
|
|
|
|
ods html;
|
|
%generatePackage(filesLocation=C:\SAS_PACKAGES_DEV\SQLinDS)
|
|
|
|
|
|
/*
|
|
* filename reference "packages" and "package" are keywords;
|
|
* the first one should be used to point folder with packages;
|
|
* the second is used internally by macros;
|
|
|
|
filename packages "C:\SAS_PACKAGES";
|
|
%include packages(SPFinit.sas);
|
|
|
|
dm 'log;clear';
|
|
%loadpackage(SQLinDS)
|
|
|
|
%helpPackage(SQLinDS)
|
|
%helpPackage(SQLinDS,*)
|
|
|
|
%unloadPackage(SQLinDS)
|
|
*/
|