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 (June 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 21 Jun 2007 12:47:28 -0700
Reply-To:     Marc Weinmann <marc.weinmann.lwed@STATEFARM.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Marc Weinmann <marc.weinmann.lwed@STATEFARM.COM>
Subject:      Question on SAS warning re 'options ignored for base data set'
Content-Type: text/plain; charset="us-ascii"

Hi all. First post to this list, and I have only been using SAS for 6 months - pardon if I show any ignorance.

Using SAS on the mainframe my JCL job finishes with a return of "CC 0004" which I believe is trying to signal me to the below warning - the snippit below is from the job's output. Is there a way within the SAS code I can reset the return state to "normal aka CC 0000" after this block of code executes since it is not a real problem, or should I rephrase the code below? The job is generating the desired output correctly. I have books on MVS and SAS that I have been digesting, feel free to point me to topics/keywords to better read up on.

Thanks! Marc

400 PROC APPEND BASE=D6

401 (DROP=X HO4_RULE HO6_RULE HOW_RULE STDBLD_4 STDBLD_6 402 STDBLD_W STDCNT_4 STDCNT_6 STDCNT_W)

403 DATA=D10 (DROP=X);

404

NOTE: APPENDING WORK.D10 TO WORK.D6.

WARNING: THE DROP, KEEP AND RENAME OPTIONS ARE IGNORED FOR THE BASE DATA SET. NOTE: THERE WERE 3 OBSERVATIONS READ FROM THE DATA SET WORK.D10.

NOTE: 3 OBSERVATIONS ADDED.

NOTE: THE DATA SET WORK.D6 HAS 157207 OBSERVATIONS AND 47 VARIABLES.

NOTE: THE PROCEDURE APPEND USED 0.00 CPU SECONDS AND 10473K.

NOTE: THE ADDRESS SPACE HAS USED A MAXIMUM OF 2908K BELOW THE LINE AND 31800K A


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