- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: password protection in a data table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: password protection in a data table
Thanks mewing,
I think this is the closest thing possible. I appreciate the help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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!