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 (June 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 3 Jun 2008 05:59:00 -0700
Reply-To:   karma <dorjetarap@GOOGLEMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   karma <dorjetarap@GOOGLEMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: manipulating the dataset variable names
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

On 2 Jun, 21:10, msch...@bu.edu wrote: > Hi: > I would like to know if anyone has created a new dataset that > contains just the field headings of an existing dataset? > Thanks, > Mark

Here's the proc sql solution

proc sql; create table new like old; quit;


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