Review
the SAS program file that you want to import, such as the following
sample file:
LIBNAME srclib1 BASE "\\d18368\sources\sas1_src";
data srclib1.fishdata1;
infile datalines missover;
input Location & $10. Date date7.
Length1 Weight1 Length2 Weight2 Length3 Weight3
Length4 Weight4;
format date date7.;
datalines;
Cole Pond 2JUN08 31 .25 32 .3 32 .25 33 .3
Cole Pond 3JUL08 33 .32 34 .41 37 .48 32 .28
Cole Pond 4AUG08 29 .23 30 .25 34 .47 32 .3
Eagle Lake 2JUN08 32 .35 32 .25 33 .30
Eagle Lake 3JUL08 30 .20 36 .45
Eagle Lake 4AUG08 33 .30 33 .28 34 .42
;
run;
proc print data=srclib1.fishdata1;
run;
Note: You can use
comment tags to embed comments into the converted job, as follows:
-
ALTERNATE_NODE_NAME
: the node name
-
ALTERNATE_NODE_DESCRIPTION
: the node description
-
COMMENT
: tags that are grouped together into a private note attached to
the node
These tags should be placed after the code block for
which they are intended.