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 (May 2012, 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 May 2012 18:14:17 -0400
Reply-To:     "Kirby, Ted" <ted.kirby@LEWIN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Kirby, Ted" <ted.kirby@LEWIN.COM>
Subject:      What option causes this?
Content-Type: text/plain; charset="us-ascii"

Every time I change the format of a variable in the "ViewTable" window (usually a SAS date number to a SAS date for easy viewing), a bunch of code suddenly shows up in the SAS Log. The code starts with:

607 proc delete data=work._qwffmt;

608 run;

WARNING: File WORK._QWFFMT.DATA does not exist.

NOTE: PROCEDURE DELETE used (Total process time):

real time 0.03 seconds

cpu time 0.01 seconds

609 proc sql;

610 create table work._qwffmt as select fmtname,libname,memname from dictionary.formats where

610! source='C' and fmttype='F' order by libname,memname;

NOTE: Table WORK._QWFFMT created, with 8 rows and 3 columns.

611 quit;

NOTE: PROCEDURE SQL used (Total process time):

real time 0.07 seconds

cpu time 0.03 seconds

and goes on for over 100 lines (including notes, error messages and blank lines).

I think that I must have some sort of option checked to create this log entry. Which option is it and how do I turn it off?

Ted Kirby

Consultant,

The Lewin Group, Inc.

3130 Fairview Park Drive, Suite 500

Falls Church, VA 22042

(703) 269-5507

Fax: (703) 269-5501

************* IMPORTANT - PLEASE READ ********************

This e-mail, including attachments, may include confidential and/or proprietary information,

and may be used only by the person or entity to which it is addressed. If the reader of this

e-mail is not the intended recipient or his or her authorized agent, the reader is hereby

notified that any dissemination, distribution or copying of this e-mail is prohibited. If you

have received this e-mail in error, please notify the sender by replying to this message

and delete this e-mail immediately.


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