Hi, Experts, I have a user who created a data set using EG 7.1 for Windows. The server is on RHEL, so their code looks similar to this: libname myLib "/u01/sasdata/myFolder"; data myLib.test; ...[stuff]... run; I see that the data is now in /u01/sasdata/myFolder, but it has permissions of 660. Normally, this isn't a problem, except that the owner of the file is the user who created it, and the group is also the user who created it, so no one else can see this data. That is, when I do a ls -lart on the directory, I see the data set like this: -rw-rw---- 1 dataCreator dataCreator 131072 Jan 24 13:51 test.sas7bdat What I'd like to see, ideally, is: -rw-rw---- 1 dataCreator sasvba 131072 Jan 24 13:51 test.sas7bdat ...where sasvba is the group for dataCreator. Otherwise, I can apply a umask and get it to look like this: -rw-rw-rw- 1 dataCreator dataCreator 131072 Jan 24 13:51 test.sas7bdat ...but that wouldn't be ideal, since everyone could read/write to the data set.
... View more