|
I am receiving this message running a PROC SQL on an IBM Mainframe 390
using SAS v8.0. The Proc SQL concatenates 3 SAS data sets as follows:
000253 CREATE TABLE RET_TRAN AS
000254 SELECT *
000255 FROM TAMTMCH
000256 OUTER UNION CORRESPONDING
000257 SELECT *
000258 FROM TONLYMCH
000259 OUTER UNION CORRESPONDING
000260 SELECT *
000261 FROM AAMTMCH
000262 OUTER UNION CORRESPONDING
000263 SELECT *
000264 FROM AONLYMCH
000265 ORDER BY PGM_CD, POST_DAT, EX_TRANS, ACCT;
When looking up the message at the SAS website, it says either there
is a bad disk track or the SAS data set is corrupt. I have proved
that neither is the case in my situation. I am able to read each of
the three data sets using data _null_ steps prior to the PROC SQL.
If anyone has received this error, I would appreciate hearing from you
about your experience and how you solved the problem.
Thanks for your time,
Steve Silver
SunTrust Bank
|