Date: Wed, 30 Apr 2003 13:47:58 -0700
Reply-To: Wei <wei112@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Wei <wei112@HOTMAIL.COM>
Organization: http://groups.google.com/
Subject: Re: File locks - unix
Content-Type: text/plain; charset=ISO-8859-1
In Unix to find all processess under your id:
ps -f -u YourID
In Unix SAS:
x ps -f -u YourID;
or
%sysexec ps -f -u YourID;
Hope this helps
ianblack@IF.COM (Ian Black) wrote in message news:<200304301436.h3UEaCP03962@listserv.cc.uga.edu>...
> Hi.
>
> I have a file on a UNIX box for which SAS is returning "update lock not
> available" messages. Is there a way (either in SAS or in UNIX) to find out
> which userid (and/or process) has locked the file?
>
> SAS 8.1, Solaris 6. I do not have root user access in UNIX.
>
> Thanks
>
> Ian
|