| 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 |
|
| 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;
|