LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 1996, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 2 Oct 1996 14:46:53 -0500
Reply-To:     abdu elnagheeb <Abdelmoneim.H.Elnagheeb@AEXP.COM>
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         abdu elnagheeb <Abdelmoneim.H.Elnagheeb@AEXP.COM>
Subject:      Error Message?

I ran the program below and got an error message (below). Notes: I used prior to these program lines, a PROC LOGISTIC and saved the parameter estimates in a data set using the Option OUTEST=WORK.MODEL Hence, WORK.MODEL contains the parameter estimates (+ other variables). The Error message reads:

ERROR: MEMBER lock is not available for WORK.SUBSET.DATA, lock held by conflicting use.

Any response on what does this Error mean will be highly appreciated. TIA, Abdu

*****************************program begins**********************; DATA BETAS; SET WORK.MODEL;RUN; PROC MEANS DATA=WORK.SUBSET; VAR &GB %VARLOOP; RUN; PROC SCORE DATA=WORK.SUBSET SCORE=BETAS TYPE=PARMS OUT=WORK.SUBSET; VAR %VARLOOP ; RUN; DATA WORK.SUBSET; SET WORK.SUBSET(RENAME=(ESTIMATE=NEWPROB)); RUN;

PROC MEANS DATA=WORK.SUBSET; VAR &GB NEWPROB %VARLOOP; RUN;


Back to: Top of message | Previous page | Main SAS-L page