Hello, i'm a SAS beginner and i have a question:
i'm trying to archive a part of my dataset
data _null_;
format archive_date date9.;
archive_date = date() - (30);
put 'Archief_datum = ' archive_date;
call symput('archive_date',left(put(archive_date,12.)));
run;
data...
Hello, i'm new at this so this could be a stupid question.
So i need to read parameters out of a file
paramater.txt looks like this:
user = OWBREPOS
paswoord = OWBREPOS
host = Filip
service = FILIP2
project = MY_PROJECT
moduleA = BI_module
it should be
$user with value OWBREPOS
$host with...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.