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 (March 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 21 Mar 2007 10:48:17 -0400
Reply-To:   Michael Raithel <michaelraithel@WESTAT.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Michael Raithel <michaelraithel@WESTAT.COM>
Subject:   Re: transferring a large pc sas dataset to unix
Comments:   cc: jrholdcraft@aep.com
In-Reply-To:   <403593359CA56C4CAE1F8F4F00DCFE7D064C684F@MAILBE2.westat.com>
Content-Type:   text/plain; charset="us-ascii"

Dear SAS-L-ers,

In my reply to Jennifer, I posted, in part, the following:

> > libname ftpdir "/home/someone/ftpdir"; > libname jendir "/home/jennifers/sasdir"; > > proc copy in=ftpdir out=jendir; > select clunker; > run; >

ARGH! A very knowledgeable little birdie reminded me that I left out a most important option--the NOCLONE option. It is there as plain as day in Bruce's paper. And, I have used it before. But... well, I guess the rush to press popped it clean out of my mind. See, my Mom was right: Haste makes waste!

The code snippet should read:

libname ftpdir "/home/someone/ftpdir"; libname jendir "/home/jennifers/sasdir";

proc copy in=ftpdir out=jendir NOCLONE; select clunker; run;

With the NOCLONE option added, the copy to a UNIX format will be right as rain!

To all Birdie's, watching from a perch on the big SAS Institute tree: Thanks for keeping us honest; look forward to seeing many of you migrated to Florida in April!

I hope that this suggestion proves helpful now, and in the future!

Of course, all of these opinions and insights are my own, and do not reflect those of my organization or my associates. All SAS code and/or methodologies specified in this posting are for illustrative purposes only and no warranty is stated or implied as to their accuracy or applicability. People deciding to use information in this posting do so at their own risk.

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Michael A. Raithel "The man who wrote the book on performance" E-mail: MichaelRaithel@westat.com

Author: Tuning SAS Applications in the MVS Environment

Author: Tuning SAS Applications in the OS/390 and z/OS Environments, Second Edition http://www.sas.com/apps/pubscat/bookdetails.jsp?catid=1&pc=58172

Author: The Complete Guide to SAS Indexes http://www.sas.com/apps/pubscat/bookdetails.jsp?catid=1&pc=60409

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ It's always helpful to learn from your mistakes, because then your mistakes seem worthwhile. - Gary Marshall +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


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