Data is manually created in the DATA step using assignment statements and the OUTPUT command.
1 Code Block
DATA STEP Data
Explanation : Creation of a SAS table named 'pword' in the 'advrpt' library. The dataset options enable encryption and define the required passwords for access ('readpwd' for reading, 'writepwd' for writing).
DATA advrpt.pword(encrypt=yes pwreq=yes read=readpwd write=writepwd);
2
DB='DEApp'; UID='MaryJ'; pwd='12z3'; OUTPUT;
3
DB='p127'; UID='Mary'; pwd='z123'; OUTPUT;
4
RUN;
2 Code Block
PROC PRINT
Explanation : Attempt to display the protected table. In an interactive session, SAS would prompt for the read password.
Copied!
proc print data=advrpt.pword;
run;
1
PROC PRINTDATA=advrpt.pword;
2
RUN;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.