Encrypts SPD Server tables on disk.
Valid in: | SPD Server |
Default: | NO |
Restriction: | A server table cannot be compressed if it is encrypted. |
Interaction: | Use ENCRYPT= in conjunction with the IOBLOCKSIZE= table option. |
encrypts the table using SAS proprietary encryption. The encryption method uses passwords. You must specify the READ= option or the PW= data set option at the same time that you specify an ENCRYPT=YES option setting. For more information about the data set options, see SAS Data Set Options: Reference.
no table encryption is performed. NO is the default setting for the ENCRYPT= option.
specifies AES-256 encryption of data. You must also supply a value for the ENCRYPTKEY= parameter if you choose AES-256 encryption.
libname tempdata sasspds 'public' server=lax94d01.14545 user='anonymous' ip=yes; data tempdata.regtable;x=1;run; option dbidirectexec=yes; proc sql; create table tempdata.enctable(encrypt=yes pw=secret) as select * from tempdata.regtable; quit;
proc contents data=tempdata.enctable(pw=secret); run;