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
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;
|