Date: Mon, 11 Oct 2010 13:39:11 -0400
Reply-To: Suzanne McCoy <Suzanne.McCoy@CATALINAMARKETING.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Suzanne McCoy <Suzanne.McCoy@CATALINAMARKETING.COM>
Subject: Re: match file
In-Reply-To: <342610.77301.qm@web37506.mail.mud.yahoo.com>
Content-Type: text/plain; charset="iso-8859-1"
please send the applicable portion of your log file
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of oslo
Sent: Monday, October 11, 2010 1:29 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: match file
Dear SAS-L Users;
I have tried to mach data from to different data set but failed some reason. I
would be greatly appreciated if any help will be.
Regards,
Rob
My data files are look like as follow
dataa;inputID $ SIRE $ DAM $ TYPE;cards
PC9036 7002 1 1
PC0088 969381 1 1
PC1093 969381 1 1
PC2103 969381 1 1
PC9029 58511 2 1;datab;inputid $;cards
58511
969381
988688
998628
AND MY SAS CODES ARE
procsql; selecta, DAM, SIRE, TYPE froma, bwhereone.id=two.id;procprint;run;;
|