- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello!
I came here after trying all the other solutions. I am running into the SAS lockdown error (The path /folder/myfolders/sasuser.v94 is not in the list of accessible paths when SAS is in the lockdown state.) when I try to run this:
libname hw3 '/folder/myfolders/sasuser.v94';
proc print data=hw3.birthweight(1).sas7bdat;
run;
I'm not sure what the issue is since my folder with the sas7bdat file is sasuser.v94. I would love any suggestions to fix this error. Thank you!
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you set up UE correctly, the shared path is /folders/myfolders.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'm not familiar with SA UE, but could it be that folder already has an allocated LIBNAME of SASUSER?
Try SASUSER instead of HW3 as your LIBREF on PROC PRINT - you don't need the LIBNAME at all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you set up UE correctly, the shared path is /folders/myfolders.