Date: Mon, 16 May 2011 12:45:34 -0700
Reply-To: "Jfh@alumni.stanford.org" <jfh@STANFORDALUMNI.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Jfh@alumni.stanford.org" <jfh@STANFORDALUMNI.ORG>
Subject: Re: Chance to Make SAS-L History: Did You Know That...
In-Reply-To: <201105161608.p4GDtOkk027669@waikiki.cc.uga.edu>
Content-Type: text/plain; charset=UTF-8
Neither of the two solutions posted today makes an exact copy. For that you need PROC COPY or its relatives. It can copy indices and constraints as well as data structure.
Probably the migration procedures as well, but I don't have the documentation at hand.
--
Sent from my Android phone with K-9 Mail. Please excuse my brevity.
Steven Raimi <sraimi@MARKETINGASSOCIATES.COM> wrote:
You can easily do that using data step, too: data emptycopy; set example_dataset; stop; run; Steve Raimi