/ Published in: SAS
URL: http://studysas.blogspot.com/2009/05/how-to-delete-or-remove-previously.html
Expand |
Embed | Plain Text
PROC DATASETS lib=work; MODIFY dsn; FORMAT _all_; INFORMAT _all_; RUN; QUIT; *work is the library name; *mention the name of the SAS dataset, whose formats and informats needs to be removed in the MODIFY statement; * format _all_ will delete all the formats in the SAS dataset. contd......
You need to login to post a comment.
