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 2006, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sun, 29 Jan 2006 06:37:28 -0800
Reply-To:     "data _null_;" <datanull@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "data _null_;" <datanull@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: how to delete a user-made format
Comments: To: sas-l@uga.edu
In-Reply-To:  <SdSdnUlq2cws6EHe4p2dnA@telenor.com>
Content-Type: text/plain; charset="iso-8859-1"

Using the contents statement will help you find the proper name of the object. Consider the followng

111 proc catalog cat=work.formats; 112 contents; 113 run;

114 delete regions.formatc; 115 run;

NOTE: Deleting entry REGIONS.FORMATC in catalog WORK.FORMATS. 116 quit;


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