LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (August 2010, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 27 Aug 2010 16:53:56 -0400
Reply-To:   George Joseph <gjman@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   George Joseph <gjman@HOTMAIL.COM>
Subject:   Re: SQL performance

proc sort data=temp.lab (keep=id sample_dt lab_id) out=test (keep=id sample_dt) THREADS;

On Fri, 27 Aug 2010 14:37:20 -0400, Bin Zhu <bxz01@HEALTH.STATE.NY.US> wrote:

>Hi, > >I am querying a table with 5 millions records and 5 fields using the >following SQL code: >proc sql; >create table test as >select l.id,l.sample_dt >from temp.lab l > where =lab_id in ('8888-8','9999-1') >order by id, sample_dt; >quit; >


Back to: Top of message | Previous page | Main SAS-L page