Date: Tue, 23 May 2006 16:41:12 -0700
Reply-To: toby989@HOTPOP.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: toby989@HOTPOP.COM
Subject: Closing libraries
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Anyone knows how to close a library?
I certainly do not want to have it open all the time since its only used
(requred with the xport that I need (although cport would have been nicer)).
Thanks Toby
117 libname a xport 'c:\project\ps\data\l1.ssp';
NOTE: Libref A was successfully assigned as follows:
Engine: XPORT
Physical Name: c:\project\ps\data\l1.ssp
118 data a.l1;
119 set ps2004l1;
120 run;
NOTE: There were 316274 observations read from the data set WORK.PS2004L1.
NOTE: The data set A.L1 has 316274 observations and 4 variables.
NOTE: DATA statement used (Total process time):
real time 0.62 seconds
cpu time 0.48 seconds
121 libname a close;
ERROR: The CLOSE engine cannot be found.
ERROR: Error in the LIBNAME statement.