|
all of the same structure?
In that case, you should think about the option open=defer.
If you don't want to change the numbers, you could use a macro:
%macro set;
data a;
set
%do i=0 %to 99;
a_&i open=defer
%end;
;
run;
%mend; %set;
If you don't (or cannot) use the open=defer option, 100 datasets will take
much memory and time, because they all are opened at the same time.
Gerhard
On Tue, 22 Sep 2009 13:55:05 -0400, Gerhard Hellriegel
<gerhard.hellriegel@T-ONLINE.DE> wrote:
>On Tue, 22 Sep 2009 13:48:40 -0400, Siddharth Jain <sjain@AVEOPHARMA.COM>
>wrote:
>
>>Hello,
>>
>>I have 100 datasets and they are named a_0, a_1, a_2 ... a_99.How do I
set
>>them to get a single dataset.
>>
>>
>>
>>Thanks,
>>Sid
|