cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
danielsh
Level I

password protection in a data table

Hello all,

I was wondering if there is a way to password protect a data table in JMP 10. Any input would be much appreciated. Thanks!

5 REPLIES 5

Re: password protection in a data table

It may not be the most efficient way, but you can copy the Table Script, paste it into a new script and then encrypte the script.  Granted, any time you make changes to the data you'd have to repeat the process, but I don't believe you can directly encrypt the data tables.

Jeff_Perkinson
Community Manager Community Manager

Re: password protection in a data table

Except for a kluge like suggests, there is no option to password protect a data table.

-Jeff

-Jeff
danielsh
Level I

Re: password protection in a data table

Thanks mewing,

I think this is the closest thing possible. I appreciate the help

yeshwanth
Level I

Re: password protection in a data table

Hello,

In SAS we can lock a dataset with a password. We should use the option PW to assign a password. Check the example below.

data y1(pw=sam);

input name $ age;

cards;

sam 12

albert 13

;

run;

After you run the code, once you try to open the dataset y1, it will promot of the password.

Hope this helps

Regards

Yesh

danielsh
Level I

Re: password protection in a data table

I didn't know you could do that in SAS, so I learned another new trick today. Thanks yeshwanth!