Date: Thu, 12 Sep 1996 12:11:01 EST
Reply-To: Najmul Chowdhury <Najmul_Chowdhury@MAIL.EHNR.STATE.NC.US>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Najmul Chowdhury <Najmul_Chowdhury@MAIL.EHNR.STATE.NC.US>
Subject: Merging datasets
Can anyone find the problem in my SAS codes? I am merging region with
sinterrl and writing out to different dataset rinterrl. So what needs
a fix. Thanks in advance.
===================
634 * merge the region data set and the state dataset ;
635
636 data out.rinterrl;
637 merge region(rename=(count=rcount percent=rpercent))
638 out.sinterrl(rename=(count=scount percent=spercent));
639 by varname varvalue;
640 retain scount spercent;
641 run;
ERROR: Attempt to open two sequential members in the same sequential
Library. Fi
ERROR: Attempt to open two sequential members in the same sequential
library. Fi
ERROR: Attempt to open two sequential members in the same sequential
library. Fi
NOTE: The SAS System stopped processing this step because of errors.
NOTE: SAS set option OBS=0 and will continue to check statements. This
may cause
NOTE: The DATA statement used 0.09 CPU seconds and 4530K.
642
643 ********************* END MERGE SECTION
**************************;
644
645 ******************* BEGIN CONTINETS SECTION
**********************;
646
647 * Lists the data set variables and other information
;
648
649 TITLE3 'OUT.RINTERRL';
650 PROC CONTENTS DATA=out.RINTERRL;
ERROR: File OUT.RINTERRL.DATA does not exist.
ERROR: File OUT.RINTERRL.DATA does not exist.
ERROR: File OUT.RINTERRL.DATA does not exist.
651
652
653 TITLE3 'OUT.SINTERRL';
NOTE: Statements not processed because of errors noted above.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: The PROCEDURE CONTENTS used 0.07 CPU seconds and 4633K.
654 PROC CONTENTS DATA=out.SINTERRL;