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 (January 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 8 Jan 2008 05:36:06 -0800
Reply-To:     "srividhya.sanakkayala@gmail.com"
              <srividhya.sanakkayala@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "srividhya.sanakkayala@gmail.com"
              <srividhya.sanakkayala@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: save output
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

On Jan 8, 11:30 am, Ching <KCWo...@gmail.com> wrote: > Hi everyone. > Just wondering if anyone could teach me what is the sas code to save > the result from the output window as a log file? > > thanks heaps. > have a great day.

u can save output window by using the printto procedure.syntax for saving output is.... proc printto print='path';run;

ex: proc printto print='e:/emp.list';run; where emp is dataset name whose output u r going to save and e:/ is the location where u r going to save the output window.


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