Date: Thu, 12 Apr 2001 07:33:23 -0400
Reply-To: clmakinson@GOODYEAR.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: clmakinson@GOODYEAR.COM
Subject: Re: SAS-V8, DB2/access and QMF
Content-type: text/plain; charset=us-ascii
If you only have a few QMF queries you can cut&paste them into a SAS
pass-through query using the DB2 connection syntax.
proc sql;
select *
from connection to db2
(
paste QMF here
);
disconnect from db2;
quit;
Refer to the SAS/Access-DB2 docs for more examples.
|