Here is the code I'm running and I'm not sure why I'm getting that ERROR.
options symbolgen mlogic;
libname lib11 '/home/userid';
%macro SFTPLoop(ds);
%global numobs;
%let dsid = %sysfunc(open(&ds));
%if &dsid %then %do;
%let NumObs= %sysfunc(AttrN(&dsid,NObs));
%If &NumObs>0 %THEN %DO;
%do %while (%sysfunc(fetch(&dsid)) = 0);
%end;
%end;
%else %put ERROR:Data set &dset has 0 rows in it.;
%let rc = %sysfunc(close(&dsid));
%end;
%else %put ERROR:open for data set &dset failed - %sysfunc(sysmsg()).;
%mend SFTPLoop;
%SFTPLoop(lib1.data);
16 libname lib1 '/home/userid';
ERROR: Unable to clear or re-assign the library LIB1 because it is still in use. ERROR: Error in the LIBNAME statement.
Try running it in a fresh session. Also ensure if you have it open in a viewer then it is closed. Ensure no other users or processes are using it.
Sometimes code will error at some point and prevent the
close()
statement from running. When this happens it is necessary to run theclose()
manually. While developing sometimes it is convenient just to clear any file handles you have open.You can use a macro like the one below to do so:
EDIT : I also noticed that you left the 'meat' out of your code. If you are calling some other macros between the
open()
andclose()
statements it is possible you are overwriting your value ofdsid
as you are not declaring your macro variables as local. I'd suggest you at least declare the following at a minimum:Another explanation is that it's possible that at some point you ran multiple
open()
statements without running a correspondingclose()
each time. If you accidentally ran 2open()
statements in a row, on the first occurrence the value ofdsid
would be assigned a value of 1. The second time it would be assigned a value of 2. If you then run aclose()
the '2' would be closed, but the '1' would still be open. No matter how many times you then ran anopen()
andclose()
the '1' would never be closed unless you manually ranclose(1)
which is effectively what my code snippet above is doing.