SAS_Log

Embed Size (px)

Citation preview

  • 7/31/2019 SAS_Log

    1/82

    98 libname rawdata "C:\Indices\projd\dat\sas\raw";

    : Libref RAWDATA was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\raw

    99 libname basedata "C:\Indices\projd\dat\sas\base";

    : Libref BASEDATA was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\base

    00 libname indices "C:\Indices\projd\dat\sas\intr";

    : Libref INDICES was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\intr

    01 libname support "C:\Indices\projd\dat\sas\sprt";

    : Libref SUPPORT was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\sprt

    02 libname ports "C:\Indices\projd\dat\sas\port";

    : Libref PORTS was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\port

    03 libname ef "C:\Indices\projd\dat\sas\ef";

    : Libref EF was successfully assigned as follows:

    Engine: V9

    Physical Name: C:\Indices\projd\dat\sas\ef

    04

    05 %macro setProperties(destn);

    06 %global runFull;

    07 %global take12MthRule;

    08 %global paraLmt;

    09 %global dataPath;

    0 %global opPath;

    1 %global dest;

    2 %global tdat;

    3

    4 %let dataPath = C:\Indices\projd\dat\raw;

    5 %let opPath = C:\Indices\projd\opt;

    6 %let dest = &destn.;

    7 %let tdat = %sysfunc(date(),yymmdd6.);

    8 %let runFull = 0; /*1=no*/

    9 %let take12MthRule = 1; /*1=no*/

    0 %let paraLmt = 9999999999;

    1 %mend setProperties;

    2

    3 %macro setPortVar(first, last, portMt, adtGrace, mmtmReCalFrq, mmtmReCalDly);

    4 %global yfirst ysecond ylast yslast dSrs;

    5 %global portMth auditGrace FVShtCnt;

    6 %global mmtmReCalFr mmtmReCalLag mmtmSt;

    7

    8 %let yfirst = &first;

    9 %let ysecond = %eval(&first + 1);

    0 %let ylast = &last;

    1 %let yslast = %eval(&last - 1);

    2 %let portMth = &portMt;

    3 %let auditGrace = &adtGrace;

    4 /* portMth the month the portfolio starts */

    5 %let mmtmReCalFr = &mmtmReCalFrq;

  • 7/31/2019 SAS_Log

    2/82

    6 %let mmtmReCalLag = &mmtmReCalDly;

    7 %let mmtmSt = %eval(&yfirst * 100 + &portMth + 1);

    8 %if &portMth = 12 %then %let mmtmSt = %eval(mmtmSt + 1);

    9 %mend setPortVar;

    40

    41 %macro setCurVar(curMth);

    42 %global curMt prvMt;

    43

    44 %let curMt = &curMth;

    45 %let prvMt = %eval(&curMth - 1);

    46 %mend setCurVar;

    47

    48 %setProperties(work)

    49 %setPortVar(1991, 2012, 10, 0, 3, 0)

    50 /*%setPortVar(2003, 2007, 7, 0, 3, 1)*/

    51 %setCurVar(201212)

    52

    53 %macro CInfo();

    54 %let cifFile = \info\ci.txt;

    55 %let chgFile = \info\chg.txt;

    56 %let indFile = \info\ind.txt;

    57

    58 data rawdata.compInfo;

    59 format CCode 6.0 CName $50. EntTyp $25. ROCRegNo $10. IYear 4.0 Ind MProd $50.

    59! MPCode $25. NICCod $10.

    60 OwnGrpCode $15. OwnGrp $50. ISINCode $15. NSECode $25. NSEFTD NSESFD

    60! NSESTD NSEDD yymmdd10. BSELstGrp $4.

    61 BSECode $10. BSESID $25. NSEFTD NSESFD NSESTD NSEDD yymmdd10.;

    62

    63 infile "&dataPath.&cifFile." dlm = "|" missover linesize=1024;

    64 retain CCode 0;

    65 input CName EntTyp ROCRegNo IYear Ind MProd MPCode NICCod OwnGrpCode OwnGrp

    65! ISINCode NSECode

    66 NSEFTD NSESFD NSESTD NSEDD BSELstGrp BSECode BSESID BSEFTD BSESFD BSESTD

    66! BSEDD;

    67 CCode = CCode + 1;

    68 if IYear = 0 then IYear = .;

    69 run;

    70

    71 data rawdata.ind;

    72 format Ind IndGrp $50.;

    73 infile "&dataPath.&indFile." dlm = "|" missover;

    74 input Ind IndGrp;

    75 if not missing(Ind) then do;

    76 output;

    77 end;

    78 run;

    79

    80 proc sort data = rawdata.compInfo out = rawdata.compInfo;

    81 by Ind;

    82 run;

    83 proc sort data = rawdata.ind out = rawdata.ind;

    84 by Ind;

    85 run;

    86 data rawdata.compInfo;

  • 7/31/2019 SAS_Log

    3/82

    87 merge rawdata.compInfo(in = InCI) rawdata.ind;

    88 by Ind;

    89 if InCI then output;

    90 run;

    91

    92 data rawdata.chgLst(drop = tmp1);

    93 format CName CNameOld tmp1 $50.;

    94 infile "&dataPath.&chgFile." dlm = "|" missover;

    95 input CName CNameOld tmp1;

    96 if not missing(CNameOld) then do;

    97 output;

    98 end;

    99 run;

    00 proc sort data = rawdata.compInfo out = rawdata.compInfo;

    01 by CName;

    02 run;

    03 proc sort data = rawdata.chgLst out = rawdata.chgLst;

    04 by CName;

    05 run;

    06

    07 data rawdata.CompLst(drop=CNameOld);

    08 merge rawdata.compInfo(keep=CCode CName ISINCode BSECode NSECode) rawdata.chgLst

    08! ;

    09 by CName;

    0 if not missing(CCode) then output;

    1 if not missing(CNameOld) then do;

    2 CName = CNameOld;

    3 Old = "Y";

    4 if not missing(CCode) then output;

    5 end;

    6 run;

    7 proc sort data = rawdata.CompLst out = rawdata.CompLst;

    8 by CName;

    9 run;

    0 proc datasets library = rawdata nolist;

    1 delete ind;

    2 delete chgLst;

    3 quit;

    4 %mend CInfo;

    5

    6 %macro readIdx();

    7 proc datasets library = rawdata nolist;

    8 delete Indx;

    9 quit;

    0 %do fil = 1 %to 2;

    1 %let idxFile = \indx\0&fil..txt;

    2

    3 data rawdata.tmp(drop = jnk);

    4 format TDate yymmdd10. B100 B200 B500 BAuto BBankex BCapGoods BConsumerDurables

    5 BDollex100 BDollex200 BDollex30 BFMCG BHealthcare BIT

    6 BMetal BMidCap BOilGas BPower BPSU BRealty BSensex

    7 BSmallCap BTeck CNX100 CNXBank CNXIT CNXMidcap CNXNiftyJr

    8 NiftyMid50 SnPCNX500 SnPCNXDefty SnPCNXNifty SnPCNXNiftyTRI

    8! 16.4;

    9

    40 infile "&dataPath.&idxFile." dsd dlm = "|" missover linesize = 1024;

  • 7/31/2019 SAS_Log

    4/82

    41 input TDate DATE11. jnk jnk B100 jnk B200 jnk B500 jnk BAuto jnk BBankex

    42 jnk BCapGoods jnk BConsumerDurables jnk BDollex100 jnk BDollex200

    43 jnk BDollex30 jnk BFMCG jnk BHealthcare jnk BIT jnk BMetal

    44 jnk BMidCap jnk BOilGas jnk BPower jnk BPSU jnk BRealty

    45 jnk BSensex jnk BSmallCap jnk BTeck jnk CNX100 jnk CNXBank

    46 jnk CNXIT jnk CNXMidcap jnk CNXNiftyJr jnk NiftyMid50

    47 jnk SnPCNX500 jnk SnPCNXDefty jnk SnPCNXNifty jnk SnPCNXNiftyTRI;

    48 run;

    49 proc datasets nolist;

    50 append base=rawdata.Indx data=rawdata.tmp;

    51 quit;

    52 %end;

    53 proc datasets library = rawdata nolist;

    54 delete tmp;

    55 quit;

    56 %mend readIdx;

    57

    58 %macro readYr(fil);

    59 %let yFile = \year\&fil.\;

    60

    61 proc datasets library = rawdata nolist;

    62 delete fo_&fil.;

    63 quit;

    64 %do yr=&yfirst. %to &yslast.;

    65 data rawdata.tmp;

    66 format CName $50. YrEnd 6.0 Mths 2.0 Income Sales IcNFS IcFS OthIc PrinExtOrdIc

    67 NetIc Exps Depr Amort WriteOffs ExpCap ExpTrvDREnOthExpHead

    67! PrinExtOrdExp

    68 ProvDTax RnDExp MinorInt ShPnL PAT EqDiv PrefDiv RetainedProf Liab

    69 PaidUpEqCap Reserves Debt SecDebt UnsecDebt CurLiabnProv Creditors

    70 DefTaxLiab Assets GFxdAsst IntngbAssets Investments Stocks Receivables

    70! DefTaxAssets

    71 CnBBal NCFOpr NCFInv CFPFA NCFFin CFLTB CFSTB CFLTL CFSTL PBDITA PBIT

    71! PBT

    72 PAT CashPrft RONW ROCE Networth CurRa DebtEqRa IntCover CurAssets

    73 CapEmployed 16.4 EmpCnt 14.0;

    74 infile "&dataPath.&yFile.&yr..txt" dsd dlm = "|" linesize = 1024 missover;

    75

    76 input CName YrEnd Mths Income Sales IcNFS IcFS OthIc PrinExtOrdIc NetIc Exps

    76! Depr

    77 Amort WriteOffs ExpCap ExpTrvDREnOthExpHead PrinExtOrdExp ProvDTax

    77! RnDExp

    78 MinorInt ShPnL PAT EqDiv PrefDiv RetainedProf Liab PaidUpEqCap Reserves

    78! Debt

    79 SecDebt UnsecDebt CurLiabnProv Creditors DefTaxLiab Assets GFxdAsst

    80 IntngbAssets Investments Stocks Receivables DefTaxAssets CnBBal NCFOpr

    81 NCFInv CFPFA NCFFin CFLTB CFSTB CFLTL CFSTL PBDITA PBIT PBT PAT CashPrft

    82 RONW ROCE Networth CurRa DebtEqRa IntCover CurAssets CapEmployed EmpCnt;

    83 if not missing(YrEnd) then do;

    84 output;

    85 end;

    86 run;

    87 proc datasets nolist;

    88 append base=rawdata.fo_&fil. data=rawdata.tmp;

    89 quit;

    90 %end;

  • 7/31/2019 SAS_Log

    5/82

    91 %setCIDs(fo_&fil.)

    92 proc datasets library = rawdata nolist;

    93 delete tmp;

    94 quit;

    95 %mend readYr;

    96

    97 %macro readDly();

    98 %let divFileBSE = \daly\div-bse.txt;

    99 %let divFileNSE = \daly\div-nse.txt;

    00 %let dlyFile = \daly\dly;

    01 %let bonFile = \daly\bon;

    02

    03 data rawdata.div(drop = CName1 DivRate DivDate);

    04 format CName $50. DivPerSh DivRate 16.2 ExDate DivDate yymmdd10.;

    05 infile "&dataPath.&divFileBSE." dsd dlm = "|" missover;

    06 informat ExDate DivDate date11.;

    07 retain CName1;

    08 input CName DivDate ExDate DivRate DivPerSh;

    09 if missing(CName) then CName = CName1;

    0 CName1 = CName;

    1 if not missing(ExDate) then output;

    2 run;

    3 data rawdata.tmp(drop = CName1 NDivRate NDivDate);

    4 format CName $50. NDivPerSh NDivRate 16.2 ExDate NDivDate yymmdd10.;

    5 infile "&dataPath.&divFileNSE." dlm = "|" missover;

    6 informat ExDate NDivDate date11.;

    7 retain CName1;

    8 input CName $ NDivDate ExDate NDivRate NDivPerSh;

    9 if missing(CName) then CName = CName1;

    0 CName1 = CName;

    1 if not missing(ExDate) then output;

    2 run;

    3 proc sort data = rawdata.div out = rawdata.div;

    4 by CName ExDate;

    5 run;

    6 proc sort data = rawdata.tmp out = rawdata.tmp;

    7 by CName ExDate;

    8 run;

    9

    0 /*(drop = NDivPerSh)*/

    1 data rawdata.div;

    2 merge rawdata.div(in = InBSE) rawdata.tmp;

    3 by CName ExDate;

    4 if InBSE then do;

    5 DFrm = "B";

    6 end;

    7 else do;

    8 DFrm = "N";

    9 DivPerSh = NDivPerSh;

    40 end;

    41 run;

    42

    43 proc datasets library = rawdata nolist;

    44 delete tmp;

    45 delete dly;

    46 delete adj;

  • 7/31/2019 SAS_Log

    6/82

    47 quit;

    48

    49 %do yr=&yfirst. %to &ylast.;

    50 %do hlf=1 %to 2;

    51 data rawdata.tmp(drop=i BTDate BActClPr BBVPS BMCap BFV BTurnover BTrdQty NTurnover

    51! NTrdQty NTDate NActClPr NBVPS NMCap NFV) rawdata.errDly(drop=i);

    52 format CName $50. BTDate yymmdd10. BActClPr BBVPS BMCap BFV BTurnover BTrdQty

    52! NTurnover NTrdQty 16.2 NTDate yymmdd10. NActClPr NBVPS NMCap NFV 16.2 TDate yymmdd10.

    52! ActClPr BVPS MCap FV Turnover TrdQty 16.2;

    53 infile "&dataPath.&dlyFile.&yr.-&hlf..txt" dsd dlm = "|" linesize = 20480

    53! missover;

    54 informat BTDate NTDate YYMMDD10.;

    55 retain CName;

    56

    57 input CName $ @;

    58 do i = 1 to 300;

    59 input BTDate BActClPr BBVPS BMCap BFV BTurnover BTrdQty NTurnover NTrdQty

    59! NTDate NActClPr NBVPS NMCap NFV @;

    60

    61 Turnover = sum(BTurnover, NTurnover);

    62 TrdQty = sum(BTrdQty, NTrdQty);

    63

    64 if not missing(BTDate) then do;

    65 TDate = BTDate;

    66 ActClPr = BActClPr;

    67 BVPS = BBVPS;

    68 MCap = BMCap;

    69 FV = BFV;

    70 if BMCap = 0 and not missing(NTDate) then do;

    71 ActClPr = NActClPr;

    72 BVPS = NBVPS;

    73 MCap = NMCap;

    74 FV = NFV;

    75 end;

    76 end;

    77 else if not missing(NTDate) then do;

    78 TDate = NTDate;

    79 ActClPr = NActClPr;

    80 BVPS = NBVPS;

    81 MCap = NMCap;

    82 FV = NFV;

    83 end;

    84 else do;

    85 TDate = .;

    86 ActClPr = .;

    87 BVPS = .;

    88 MCap = .;

    89 FV = .;

    90 output rawdata.errDly;

    91 end;

    92

    93 if not missing(TDate) then output rawdata.tmp;

    94 end;

    95 input;

    96 run;

    97 proc datasets nolist;

  • 7/31/2019 SAS_Log

    7/82

    98 append base=rawdata.dly data=rawdata.tmp;

    99 quit;

    00 %end;

    01 data rawdata.tmp(drop=i jnk);

    02 format CName CITyp SecTyp $50. TDate XBDate yymmdd10. RaNu RaDe XBPr 16.2 XBDRet

    02! 16.4;

    03 infile "&dataPath.&bonFile.&yr..txt" dsd dlm = "|" linesize = 10240 missover;

    04 informat TDate YYMMDD10.;

    05 input CName CITyp SecTyp TDate date11. jnk RaNu RaDe XBPr XBDate date11. jnk

    05! XBDRet;

    06 if not missing(TDate) then output;

    07 run;

    08 proc datasets nolist;

    09 append base = rawdata.bon data = rawdata.tmp;

    0 quit;

    1 %end;

    2 %setCIDs(dly)

    3 %setCIDs(bon)

    4 %setCIDs(div)

    5 proc sort data = rawdata.dly out = rawdata.dly;

    6 by CCode TDate;

    7 run;

    8 proc sort data = rawdata.bon out = rawdata.bon;

    9 by CCode XBDate;

    0 run;

    1 proc sort data = rawdata.div out = rawdata.div;

    2 by CCode ExDate;

    3 run;

    4

    5 data rawdata.dly;

    6 set rawdata.dly;

    7 by CCode TDate;

    8 if Last.TDate then output;

    9 run;

    0

    1 data rawdata.bon(drop = ErrTxt XBDate) rawdata.err_misRaDe_bon;

    2 set rawdata.bon;

    3 by CCode XBDate;

    4 retain BFact 1;

    5

    6 if Last.XBDate then do;

    7 if RaDe = 0 or RaNu = 0 then do;

    8 ErrTxt = "Missing Nu or De";

    9 output rawdata.err_misRaDe_bon;

    40 end;

    41 else if missing(XBDate) then do;

    42 ErrTxt = "Missing XB Date";

    43 output rawdata.err_misRaDe_bon;

    44 end;

    45 else do;

    46 TDate = XBDate;

    47 BFact = BFact * (RaNu + RaDe) / RaDe;

    48 output rawdata.bon;

    49 end;

    50 end;

    51 else do;

  • 7/31/2019 SAS_Log

    8/82

    52 ErrTxt = "Repeat Bonus";

    53 output rawdata.err_misRaDe_bon;

    54 end;

    55

    56 if Last.CCode then do;

    57 BFact = 1;

    58 end;

    59 run;

    60 proc sort data = rawdata.bon out = rawdata.bon;

    61 by CCode TDate;

    62 run;

    63

    64 data rawdata.div(drop = TDivPerSh rename=(ExDate=TDate));

    65 set rawdata.div;

    66 by CCode ExDate;

    67 retain TDivPerSh 0;

    68 TDivPerSh = sum(TDivPerSh, DivPerSh);

    69 if Last.ExDate then do;

    70 DivPerSh = TDivPerSh;

    71 if DivPerSh > 0.00 then output;

    72 TDivPerSh = 0;

    73 end;

    74 run;

    75

    76 data rawdata.dly (drop = BFact PBFV RaNu RaDe XBPr XBDRet BaseFV ClTyp SecTyp)

    76! rawdata.upd_bon_dly_adj;

    77 merge rawdata.dly(in = InDly) rawdata.bon(in = InBon);

    78 by CCode TDate;

    79 retain BonFact 1;

    80 retain BaseFV PBFV 0;

    81

    82 if BaseFV = 0 then BaseFV = FV;

    83 if InBon then BonFact = BFact;

    84

    85 AdjFact = BonFact * (BaseFV / FV);

    86 AdjClPr = ActClPr * AdjFact;

    87

    88 if InBon or not PBFV = BaseFV then do;

    89 output rawdata.upd_bon_dly_adj;

    90 PBFV = BaseFV;

    91 end;

    92 if InDly then do;

    93 output rawdata.dly;

    94 end;

    95

    96 if Last.CCode then do;

    97 AdjFact = 1;

    98 BaseFV = 0;

    99 PBFV = 0;

    00 BonFact = 1;

    01 end;

    02 run;

    03

    04 data rawdata.dly(drop = TDivPerSh);

    05 merge rawdata.dly(in = InDly) rawdata.div;

    06 by CCode TDate;

  • 7/31/2019 SAS_Log

    9/82

    07 retain TDivPerSh 0;

    08 TDivPerSh = sum(TDivPerSh, DivPerSh);

    09 if InDly = 1 then do;

    0 DivPerSh = TDivPerSh;

    1 output;

    2 TDivPerSh = 0;

    3 end;

    4 run;

    5 proc datasets library = rawdata nolist;

    6 delete tmp;

    7 delete adj;

    8 /* delete div;*/

    9 quit;

    0 %mend readDly;

    1

    2 %macro setCIDs(dname);

    3 proc sort data=rawdata.&dname. out=rawdata.a_&dname.;

    4 by CName;

    5 run;

    6 data rawdata.&dname.(drop=CName) rawdata.Err_CIDM_&dname.;

    7 merge rawdata.CompLst(drop=Old in=inLst) rawdata.a_&dname.(in=inBase);

    8 by CName;

    9 if inBase and inLst then do;

    0 output rawdata.&dname.;

    1 end;

    2 else do;

    3 output rawdata.Err_CIDM_&dname.;

    4 end;

    5 run;

    6 proc sort data=rawdata.Err_CIDM_&dname. out=rawdata.Err_CIDM_&dname.;

    7 by CCode;

    8 run;

    9 proc datasets library=rawdata nolist;

    40 delete a_&dname.;

    41 quit;

    42 %mend setCIDs;

    43

    44 %macro mergeYr();

    45 proc sort data=rawdata.fo_stda out=rawdata.fo_stda;

    46 by CCode YrEnd;

    47 run;

    48 proc sort data=rawdata.fo_cons out=rawdata.fo_cons;

    49 by CCode YrEnd;

    50 run;

    51 proc sort data=rawdata.CompInfo out=rawdata.CompInfo;

    52 by CCode;

    53 run;

    54 data rawdata.fo;

    55 set rawdata.fo_cons rawdata.fo_stda;

    56 by CCode YrEnd;

    57 if First.YrEnd then output;

    58 run;

    59 data rawdata.fo;

    60 merge rawdata.fo rawdata.CompInfo(keep=CCode IndGrp);

    61 by CCode;

    62 run;

  • 7/31/2019 SAS_Log

    10/82

    63 proc datasets library=rawdata nolist;

    64 delete fo_cons;

    65 delete fo_stda;

    66 copy out=support move;

    67 select err_:;

    68 quit;

    69 quit;

    70 %mend mergeYr;

    71

    72 %CInfo()

    : The infile "C:\Indices\projd\dat\raw\info\ci.txt" is:

    Filename=C:\Indices\projd\dat\raw\info\ci.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=5348995,

    Last Modified=03Mar2012:16:49:05,

    Create Time=28Jan2012:12:13:45

    : Invalid data for NSEFTD in line 4 148-157.

    : Invalid data for BSEFTD in line 4 184-193.

    : ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+

    20 Microns Ltd.|Public Ltd.|04-9768|1987|Minerals|Mineral Products|030000000000000000

    86 00|08920|020102000000|Private (Indian)|INE144J01019|20MICRONS|2008.10.06|0|0|0|B|5330

    171 22|20MICRONS|2008.10.06|0|0|0 199

    e=4 CName=20 Microns Ltd. EntTyp=Public Ltd. ROCRegNo=04-9768 IYear=1987 Ind=Minerals

    d=Mineral Products MPCode=03000000000000000000 NICCod=08920 OwnGrpCode=020102000000

    Grp=Private (Indian) ISINCode=INE144J01019 NSECode=20MICRONS NSEFTD=. NSESFD=1960-01-01

    STD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B BSECode=533022 BSESID=20MICRONS BSEFTD=.

    SFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=4

    : Invalid data for NSEFTD in line 7 212-221.

    : Invalid data for NSEDD in line 7 227-236.

    : Invalid data for BSEFTD in line 7 260-269.

    : Invalid data for BSEDD in line 7 275-284.

    20Th Century Finance Corpn. Ltd. [Merged]|Public Ltd.|11-21609|1979|Other asset finan

    86 cing services|Other asset financing services|21061102010900000000|64920|020102000000|

    171 Private (Indian)|INE420A01012|20THCENFIN|1994.12.14|0|0|1999.05.28|0|500001|20TH CENT

    256 URY|1982.07.20|0|0|1999.05.24 284

    e=7 CName=20Th Century Finance Corpn. Ltd. [Merged] EntTyp=Public Ltd. ROCRegNo=11-21609

    ar=1979 Ind=Other asset financing services MProd=Other asset financing services

    de=21061102010900000000 NICCod=64920 OwnGrpCode=020102000000 OwnGrp=Private (Indian)

    Code=INE420A01012 NSECode=20THCENFIN NSEFTD=. NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=.

    LstGrp=0 BSECode=500001 BSESID=20TH CENTURY BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=. _ERROR_=1

    7

    : Invalid data for NSEFTD in line 25 161-170.

    : Invalid data for BSEFTD in line 25 198-207.

    3I Infotech Ltd.|Public Ltd.|11-74411|1997|Computer software|Computer software|160303

    86 00000000000000|62013|020101030549|I.C.I.C.I. Group|INE748C01020|3IINFOTECH|2005.04.22

    171 |0|0|0|B|532628|3IINFOTECH|2005.04.22|0|0|0 213

    e=25 CName=3I Infotech Ltd. EntTyp=Public Ltd. ROCRegNo=11-74411 IYear=1997

    Computer software MProd=Computer software MPCode=16030300000000000000 NICCod=62013

    GrpCode=020101030549 OwnGrp=I.C.I.C.I. Group ISINCode=INE748C01020 NSECode=3IINFOTECH

    FTD=. NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B BSECode=532628

    SID=3IINFOTECH BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=25

    : Invalid data for NSEFTD in line 27 144-153.

    : Invalid data for BSEFTD in line 27 178-187.

    3M India Ltd.|Public Ltd.|08-13543|1987|Diversified|Diversified|22000000000000000000|

    86 98200|020202000000|Private (Foreign)|INE470A01017|3MINDIA|1995.01.23|0|0|0|B|523395|3

  • 7/31/2019 SAS_Log

    11/82

    171 MINDIA|1991.06.26|0|0|0 193

    e=27 CName=3M India Ltd. EntTyp=Public Ltd. ROCRegNo=08-13543 IYear=1987 Ind=Diversified

    d=Diversified MPCode=22000000000000000000 NICCod=98200 OwnGrpCode=020202000000

    Grp=Private (Foreign) ISINCode=INE470A01017 NSECode=3MINDIA NSEFTD=. NSESFD=1960-01-01

    STD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B BSECode=523395 BSESID=3MINDIA BSEFTD=. BSESFD=0

    STD=0 BSEDD=0 _ERROR_=1 _N_=27

    : Invalid data for BSEFTD in line 28 183-192.

    7Seas Entertainment Ltd.|Public Ltd.|01-13074|1991|Computer software|Computer softwar

    86 e|16030300000000000000|62013|020102000000|Private (Indian)|INE454F01010|0|0|0|0|0|B|5

    171 90116|7SEAS|2010.09.27|0|0|0 198

    e=28 CName=7Seas Entertainment Ltd. EntTyp=Public Ltd. ROCRegNo=01-13074 IYear=1991

    Computer software MProd=Computer software MPCode=16030300000000000000 NICCod=62013

    GrpCode=020102000000 OwnGrp=Private (Indian) ISINCode=INE454F01010 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B

    Code=590116 BSESID=7SEAS BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=28

    : Invalid data for BSEFTD in line 29 194-203.

    : Invalid data for BSESFD in line 29 205-214.

    8K Miles Software Services Ltd.|Public Ltd.|01-15804|1993|Computer software|Computer

    : ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+

    86 software|16030300000000000000|62013|020101030989|Surana Udyog Group|INE650K01013|0|0|

    171 0|0|0|T|512161|8KMILES|1985.09.02|2001.12.27|0|0 218

    e=29 CName=8K Miles Software Services Ltd. EntTyp=Public Ltd. ROCRegNo=01-15804 IYear=1993

    Computer software MProd=Computer software MPCode=16030300000000000000 NICCod=62013

    GrpCode=020101030989 OwnGrp=Surana Udyog Group ISINCode=INE650K01013 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=T

    Code=512161 BSESID=8KMILES BSEFTD=. BSESFD=. BSESTD=0 BSEDD=0 _ERROR_=1 _N_=29

    : Invalid data for BSEFTD in line 31 204-213.

    : Invalid data for BSEDD in line 31 219-228.

    A 1 Century Trades Ltd.|Public Ltd.|11-23716|1981|Other financial services|Financial

    86 services including leasing|21060000000000000000|64910|020102000000|Private (Indian)|0

    171 |0|0|0|0|0|0|503679|A S P INV PU|1982.07.27|0|0|2004.04.20 228

    e=31 CName=A 1 Century Trades Ltd. EntTyp=Public Ltd. ROCRegNo=11-23716 IYear=1981

    Other financial services MProd=Financial services including leasing

    de=21060000000000000000 NICCod=64910 OwnGrpCode=020102000000 OwnGrp=Private (Indian)

    Code=0 NSECode=0 NSEFTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01

    LstGrp=0 BSECode=503679 BSESID=A S P INV PU BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=. _ERROR_=1

    31

    : Invalid data for NSEFTD in line 35 210-219.

    : Invalid data for BSEFTD in line 35 243-252.

    A 2 Z Maintenance & Engg. Services Ltd.|Public Ltd.|05-34805|2002|Business consultanc

    86 y|Technical Consultancy & engineering services|21090300000000000000|71100|02010200000

    171 0|Private (Indian)|INE619I01012|A2ZMES|2010.12.23|0|0|0|B|533292|A2ZMES|2010.12.23|0|

    256 0|0 258

    e=35 CName=A 2 Z Maintenance & Engg. Services Ltd. EntTyp=Public Ltd. ROCRegNo=05-34805

    ar=2002 Ind=Business consultancy MProd=Technical Consultancy & engineering services

    de=21090300000000000000 NICCod=71100 OwnGrpCode=020102000000 OwnGrp=Private (Indian)

    Code=INE619I01012 NSECode=A2ZMES NSEFTD=. NSESFD=1960-01-01 NSESTD=1960-01-01

    DD=1960-01-01 BSELstGrp=B BSECode=533292 BSESID=A2ZMES BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0

    ROR_=1 _N_=35

    : Invalid data for NSEFTD in line 47 147-156.

    : Invalid data for BSEFTD in line 47 177-186.

    A B B Ltd.|Public Ltd.|08-32923|1949|Diversified|Diversified|22000000000000000000|982

    86 00|020201020100|Asea Brown Boveri (F) Group|INE117A01022|ABB|1994.11.03|0|0|0|A|50000

    171 2|ABB|1981.01.02|0|0|0 192

    e=47 CName=A B B Ltd. EntTyp=Public Ltd. ROCRegNo=08-32923 IYear=1949 Ind=Diversified

    d=Diversified MPCode=22000000000000000000 NICCod=98200 OwnGrpCode=020201020100

  • 7/31/2019 SAS_Log

    12/82

    Grp=Asea Brown Boveri (F) Group ISINCode=INE117A01022 NSECode=ABB NSEFTD=. NSESFD=1960-01-01

    STD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=A BSECode=500002 BSESID=ABB BSEFTD=. BSESFD=0

    STD=0 BSEDD=0 _ERROR_=1 _N_=47

    : Invalid data for NSEFTD in line 50 178-187.

    : Invalid data for NSESFD in line 50 189-198.

    : Invalid data for NSEDD in line 50 202-211.

    : Invalid data for BSEFTD in line 50 231-240.

    A B C Bearings Ltd.|Public Ltd.|11-12028|1961|General purpose machinery|Ball or rolle

    86 r bearings|14020300000000000000|28140|020102000000|Private (Indian)|INE779A01011|ANTF

    171 RIBEAR|1995.05.15|2000.09.20|0|2000.09.20|B|505665|ABCBEARS|1981.01.02|0|0|0 246

    e=50 CName=A B C Bearings Ltd. EntTyp=Public Ltd. ROCRegNo=11-12028 IYear=1961

    General purpose machinery MProd=Ball or roller bearings MPCode=14020300000000000000

    Cod=28140 OwnGrpCode=020102000000 OwnGrp=Private (Indian) ISINCode=INE779A01011

    Code=ANTFRIBEAR NSEFTD=. NSESFD=. NSESTD=1960-01-01 NSEDD=. BSELstGrp=B BSECode=505665

    SID=ABCBEARS BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=50

    : Invalid data for BSEFTD in line 53 200-209.

    A B C Gas (International) Ltd.|Public Ltd.|11-22118|1980|Copper & copper products|Cop

    86 per products, nec|13029900000000000000|24201|020102000000|Private (Indian)|INE173M010

    171 12|0|0|0|0|0|T|513119|ABCGAS|1986.11.11|0|0|0 215

    e=53 CName=A B C Gas (International) Ltd. EntTyp=Public Ltd. ROCRegNo=11-22118 IYear=1980

    Copper & copper products MProd=Copper products, nec MPCode=13029900000000000000

    Cod=24201 OwnGrpCode=020102000000 OwnGrp=Private (Indian) ISINCode=INE173M01012 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=T

    Code=513119 BSESID=ABCGAS BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=53

    : Invalid data for BSEFTD in line 54 215-224.

    A B C India Ltd.|Public Ltd.|02-1393|1972|Transport logistics services|Cargo handling

    86 , incidental to land transport|21030601010000000000|52241|020101020442|TCI-Bhoruka Gr

    171 oup|INE125D01011|0|0|0|0|0|B|520123|ABCINDQ|1994.06.10|0|0|0 230

    e=54 CName=A B C India Ltd. EntTyp=Public Ltd. ROCRegNo=02-1393 IYear=1972

    Transport logistics services MProd=Cargo handling, incidental to land transport

    de=21030601010000000000 NICCod=52241 OwnGrpCode=020101020442 OwnGrp=TCI-Bhoruka Group

    Code=INE125D01011 NSECode=0 NSEFTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01

    DD=1960-01-01 BSELstGrp=B BSECode=520123 BSESID=ABCINDQ BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0

    ROR_=1 _N_=54

    : Invalid data for BSEFTD in line 55 227-236.

    : Invalid data for BSEDD in line 55 242-251.

    A B C O Plastics Ltd.|Public Ltd.|18-27000|1994|Plastic furniture, floorings & misc.

    86 items|Plastic injection moulding items|11021300000000000000|22209|020102000000|Privat

    171 e (Indian)|INE522601017|0|0|0|0|0|0|526699|ABCO PLASTIC|1995.01.25|0|0|2004.07.02 251

    e=55 CName=A B C O Plastics Ltd. EntTyp=Public Ltd. ROCRegNo=18-27000 IYear=1994

    Plastic furniture, floorings & misc. items MProd=Plastic injection moulding items

    de=11021300000000000000 NICCod=22209 OwnGrpCode=020102000000 OwnGrp=Private (Indian)

    Code=INE522601017 NSECode=0 NSEFTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01

    DD=1960-01-01 BSELstGrp=0 BSECode=526699 BSESID=ABCO PLASTIC BSEFTD=. BSESFD=0 BSESTD=0

    DD=. _ERROR_=1 _N_=55

    : Invalid data for BSEFTD in line 56 172-181.

    A B C Paper Ltd.|Public Ltd.|55-111223|1997|Paper & newsprint|Paper|09020200000000000

    86 000|17013|020101020114|Amrit Banaspati Group|INE529I01013|0|0|0|0|0|T|532937|ABCPAPER

    171 |2008.01.23|0|0|0 187

    e=56 CName=A B C Paper Ltd. EntTyp=Public Ltd. ROCRegNo=55-111223 IYear=1997

    Paper & newsprint MProd=Paper MPCode=09020200000000000000 NICCod=17013

    GrpCode=020101020114 OwnGrp=Amrit Banaspati Group ISINCode=INE529I01013 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=T

    Code=532937 BSESID=ABCPAPER BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=56

    : Invalid data for NSEFTD in line 64 176-185.

    : Invalid data for NSESFD in line 64 187-196.

  • 7/31/2019 SAS_Log

    13/82

    : Invalid data for BSEFTD in line 64 215-224.

    A B G Infralogistics Ltd.|Public Ltd.|11-31578|1983|Business consultancy|Other busine

    86 ss activities nec|21099999000000000000|82990|020101030131|ABG Group|INE580C01019|ABGH

    171 EAVY|1995.05.10|2001.07.23|0|0|B|520155|ABG|1995.03.16|0|0|0 230

    e=64 CName=A B G Infralogistics Ltd. EntTyp=Public Ltd. ROCRegNo=11-31578 IYear=1983

    Business consultancy MProd=Other business activities nec MPCode=21099999000000000000

    Cod=82990 OwnGrpCode=020101030131 OwnGrp=ABG Group ISINCode=INE580C01019 NSECode=ABGHEAVY

    FTD=. NSESFD=. NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B BSECode=520155 BSESID=ABG

    FTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=64

    : Invalid data for NSEFTD in line 68 163-172.

    : Invalid data for BSEFTD in line 68 197-206.

    A B G Shipyard Ltd.|Public Ltd.|04-7730|1985|Other transports equipment|Ships, boats,

    86 etc.|17030000000000000000|30111|020101030131|ABG Group|INE067H01016|ABGSHIP|2007.04.

    171 11|0|0|0|B|532682|ABGSHIP|2005.12.13|0|0|0 212

    e=68 CName=A B G Shipyard Ltd. EntTyp=Public Ltd. ROCRegNo=04-7730 IYear=1985

    Other transports equipment MProd=Ships, boats, etc. MPCode=17030000000000000000

    Cod=30111 OwnGrpCode=020101030131 OwnGrp=ABG Group ISINCode=INE067H01016 NSECode=ABGSHIP

    FTD=. NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B BSECode=532682

    SID=ABGSHIP BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=68

    : Invalid data for BSEFTD in line 74 189-198.

    A B L Biotechnologies Ltd.|Public Ltd.|18-22340|1992|Drugs & pharmaceuticals|Empty ca

    86 psules|10038506000000000000|21009|020102000000|Private (Indian)|INE707D01016|0|0|0|0|

    : ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+

    171 0|B|526955|ABLBIO|1995.06.15|0|0|0 204

    e=74 CName=A B L Biotechnologies Ltd. EntTyp=Public Ltd. ROCRegNo=18-22340 IYear=1992

    Drugs & pharmaceuticals MProd=Empty capsules MPCode=10038506000000000000 NICCod=21009

    GrpCode=020102000000 OwnGrp=Private (Indian) ISINCode=INE707D01016 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B

    Code=526955 BSESID=ABLBIO BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=74

    : Invalid data for BSEFTD in line 78 185-194.

    A B M Knowledgeware Ltd.|Public Ltd.|11-113638|1993|Computer software|Computer softwa

    86 re|16030300000000000000|62013|020102000000|Private (Indian)|INE850B01018|0|0|0|0|0|B|

    171 531161|ABMKNO|1995.10.16|0|0|0 200

    e=78 CName=A B M Knowledgeware Ltd. EntTyp=Public Ltd. ROCRegNo=11-113638 IYear=1993

    Computer software MProd=Computer software MPCode=16030300000000000000 NICCod=62013

    GrpCode=020102000000 OwnGrp=Private (Indian) ISINCode=INE850B01018 NSECode=0

    FTD=1960-01-01 NSESFD=1960-01-01 NSESTD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=B

    Code=531161 BSESID=ABMKNO BSEFTD=. BSESFD=0 BSESTD=0 BSEDD=0 _ERROR_=1 _N_=78

    : Invalid data for BSEFTD in line 83 165-174.

    : Invalid data for BSEDD in line 83 180-189.

    A B N Granites Ltd.|Public Ltd.|09-10297|1990|Granite|Granite|03011601000000000000|08

    86 102|020102000000|Private (Indian)|INE001101018|0|0|0|0|0|0|515103|ABN GRANTIES|1993.0

    171 8.10|0|0|1997.02.17 189

    e=83 CName=A B N Granites Ltd. EntTyp=Public Ltd. ROCRegNo=09-10297 IYear=1990 Ind=Granite

    d=Granite MPCode=03011601000000000000 NICCod=08102 OwnGrpCode=020102000000

    Grp=Private (Indian) ISINCode=INE001101018 NSECode=0 NSEFTD=1960-01-01 NSESFD=1960-01-01

    STD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=0 BSECode=515103 BSESID=ABN GRANTIES BSEFTD=.

    SFD=0 BSESTD=0 BSEDD=. _ERROR_=1 _N_=83

    : Invalid data for NSEFTD in line 95 125-134.

    ING: Limit set by ERRORS= option reached. Further errors of this type will not be printed.

    A C C Ltd.|Public Ltd.|11-2515|1936|Cement|Cement|12010102000000000000|23942|02020102

    86 3500|Holcim (F) Group|INE012A01025|ACC|1994.11.03|0|0|0|A|500410|ACC|0|0|0|0 161

    e=95 CName=A C C Ltd. EntTyp=Public Ltd. ROCRegNo=11-2515 IYear=1936 Ind=Cement

    d=Cement MPCode=12010102000000000000 NICCod=23942 OwnGrpCode=020201023500

    Grp=Holcim (F) Group ISINCode=INE012A01025 NSECode=ACC NSEFTD=. NSESFD=1960-01-01

    STD=1960-01-01 NSEDD=1960-01-01 BSELstGrp=A BSECode=500410 BSESID=ACC BSEFTD=0 BSESFD=0

  • 7/31/2019 SAS_Log

    14/82

    STD=0 BSEDD=0 _ERROR_=1 _N_=95

    : 27046 records were read from the infile "C:\Indices\projd\dat\raw\info\ci.txt".

    The minimum record length was 120.

    The maximum record length was 320.

    : The data set RAWDATA.COMPINFO has 27046 observations and 24 variables.

    : DATA statement used (Total process time):

    real time 0.26 seconds

    cpu time 0.17 seconds

    : The infile "C:\Indices\projd\dat\raw\info\ind.txt" is:

    Filename=C:\Indices\projd\dat\raw\info\ind.txt,

    RECFM=V,LRECL=256,File Size (bytes)=5522,

    Last Modified=04Feb2012:15:57:16,

    Create Time=28Jan2012:13:08:38

    : 143 records were read from the infile "C:\Indices\projd\dat\raw\info\ind.txt".

    The minimum record length was 14.

    The maximum record length was 73.

    : The data set RAWDATA.IND has 143 observations and 2 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : There were 27046 observations read from the data set RAWDATA.COMPINFO.

    : The data set RAWDATA.COMPINFO has 27046 observations and 24 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.13 seconds

    cpu time 0.06 seconds

    : There were 143 observations read from the data set RAWDATA.IND.

    : The data set RAWDATA.IND has 143 observations and 2 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.01 seconds

    cpu time 0.00 seconds

    : There were 27046 observations read from the data set RAWDATA.COMPINFO.

    : There were 143 observations read from the data set RAWDATA.IND.

    : The data set RAWDATA.COMPINFO has 27046 observations and 25 variables.

    : DATA statement used (Total process time):

    real time 0.04 seconds

    cpu time 0.04 seconds

    : The infile "C:\Indices\projd\dat\raw\info\chg.txt" is:

    Filename=C:\Indices\projd\dat\raw\info\chg.txt,

    RECFM=V,LRECL=256,File Size (bytes)=162633,

    Last Modified=03Mar2012:17:32:52,

  • 7/31/2019 SAS_Log

    15/82

    Create Time=28Jan2012:12:13:45

    : 2354 records were read from the infile "C:\Indices\projd\dat\raw\info\chg.txt".

    The minimum record length was 35.

    The maximum record length was 130.

    : The data set RAWDATA.CHGLST has 2354 observations and 2 variables.

    : DATA statement used (Total process time):

    real time 0.00 seconds

    cpu time 0.00 seconds

    : There were 27046 observations read from the data set RAWDATA.COMPINFO.

    : The data set RAWDATA.COMPINFO has 27046 observations and 25 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.06 seconds

    cpu time 0.03 seconds

    : There were 2354 observations read from the data set RAWDATA.CHGLST.

    : The data set RAWDATA.CHGLST has 2354 observations and 2 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : There were 27046 observations read from the data set RAWDATA.COMPINFO.

    : There were 2354 observations read from the data set RAWDATA.CHGLST.

    : The data set RAWDATA.COMPLST has 29400 observations and 6 variables.

    : DATA statement used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : There were 29400 observations read from the data set RAWDATA.COMPLST.

    : The data set RAWDATA.COMPLST has 29400 observations and 6 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : Deleting RAWDATA.IND (memtype=DATA).

    : Deleting RAWDATA.CHGLST (memtype=DATA).

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.00 seconds

    73

    74 %readIdx()

    : The file RAWDATA.INDX (memtype=DATA) was not found, but appears on a DELETE statement.

  • 7/31/2019 SAS_Log

    16/82

    : PROCEDURE DATASETS used (Total process time):

    real time 0.01 seconds

    cpu time 0.00 seconds

    : The infile "C:\Indices\projd\dat\raw\indx\01.txt" is:

    Filename=C:\Indices\projd\dat\raw\indx\01.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2607917,

    Last Modified=03Mar2012:16:27:50,

    Create Time=28Jan2012:12:18:30

    : Invalid data for jnk in line 1 13-24.

    : Invalid data for jnk in line 1 71-82.

    : ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+

    01 Jan 1990| 1990.01.01 |423.57||||||||||||||||||||||||||||||||||||| 1990.01.01 |

    86 783.35|||||||||||||||||||||||| 115

    e=1990-01-01 B100=423.5700 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=783.3500 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=1

    : Invalid data for jnk in line 2 13-24.

    : Invalid data for jnk in line 2 71-82.

    02 Jan 1990| 1990.01.02 |422.43||||||||||||||||||||||||||||||||||||| 1990.01.02 |

    86 780.01|||||||||||||||||||||||| 115

    e=1990-01-02 B100=422.4300 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=780.0100 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=2

    : Invalid data for jnk in line 3 13-24.

    : Invalid data for jnk in line 3 71-82.

    03 Jan 1990| 1990.01.03 |416.91||||||||||||||||||||||||||||||||||||| 1990.01.03 |

    86 763.22|||||||||||||||||||||||| 115

    e=1990-01-03 B100=416.9100 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=763.2200 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=3

    : Invalid data for jnk in line 4 13-24.

    : Invalid data for jnk in line 4 71-82.

    04 Jan 1990| 1990.01.04 |415.84||||||||||||||||||||||||||||||||||||| 1990.01.04 |

    86 760.80|||||||||||||||||||||||| 115

    e=1990-01-04 B100=415.8400 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=760.8000 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=4

    : Invalid data for jnk in line 5 13-24.

    : Invalid data for jnk in line 5 71-82.

    05 Jan 1990| 1990.01.05 |420.65||||||||||||||||||||||||||||||||||||| 1990.01.05 |

    86 774.58|||||||||||||||||||||||| 115

    e=1990-01-05 B100=420.6500 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=774.5800 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

  • 7/31/2019 SAS_Log

    17/82

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=5

    : Invalid data for jnk in line 6 13-24.

    : Invalid data for jnk in line 6 71-82.

    08 Jan 1990| 1990.01.08 |425.47||||||||||||||||||||||||||||||||||||| 1990.01.08 |

    86 778.33|||||||||||||||||||||||| 115

    e=1990-01-08 B100=425.4700 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=778.3300 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=6

    : Invalid data for jnk in line 7 13-24.

    : Invalid data for jnk in line 7 71-82.

    09 Jan 1990| 1990.01.09 |423.82||||||||||||||||||||||||||||||||||||| 1990.01.09 |

    86 774.50|||||||||||||||||||||||| 115

    e=1990-01-09 B100=423.8200 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=774.5000 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=7

    : Invalid data for jnk in line 8 13-24.

    : Invalid data for jnk in line 8 71-82.

    10 Jan 1990| 1990.01.10 |425.91||||||||||||||||||||||||||||||||||||| 1990.01.10 |

    86 782.48|||||||||||||||||||||||| 115

    e=1990-01-10 B100=425.9100 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=782.4800 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=8

    : Invalid data for jnk in line 9 13-24.

    : Invalid data for jnk in line 9 71-82.

    11 Jan 1990| 1990.01.11 |425.71||||||||||||||||||||||||||||||||||||| 1990.01.11 |

    86 780.34|||||||||||||||||||||||| 115

    e=1990-01-11 B100=425.7100 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=780.3400 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=9

    : Invalid data for jnk in line 10 13-24.

    : Invalid data for jnk in line 10 71-82.

    15 Jan 1990| 1990.01.15 |419.84||||||||||||||||||||||||||||||||||||| 1990.01.15 |

    86 763.55|||||||||||||||||||||||| 115

    e=1990-01-15 B100=419.8400 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=763.5500 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=10

    : Invalid data for jnk in line 11 13-24.

    : Invalid data for jnk in line 11 71-82.

    16 Jan 1990| 1990.01.16 |414.71||||||||||||||||||||||||||||||||||||| 1990.01.16 |

    86 755.58|||||||||||||||||||||||| 115

    e=1990-01-16 B100=414.7100 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=755.5800 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=11

  • 7/31/2019 SAS_Log

    18/82

    : Invalid data for jnk in line 12 13-24.

    : Invalid data for jnk in line 12 71-82.

    17 Jan 1990| 1990.01.17 |410.33||||||||||||||||||||||||||||||||||||| 1990.01.17 |

    86 745.19|||||||||||||||||||||||| 115

    e=1990-01-17 B100=410.3300 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=745.1900 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=12

    : Invalid data for jnk in line 13 13-24.

    : Invalid data for jnk in line 13 71-82.

    18 Jan 1990| 1990.01.18 |407.01||||||||||||||||||||||||||||||||||||| 1990.01.18 |

    86 738.58|||||||||||||||||||||||| 115

    e=1990-01-18 B100=407.0100 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=738.5800 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=13

    : Invalid data for jnk in line 14 13-24.

    : Invalid data for jnk in line 14 71-82.

    19 Jan 1990| 1990.01.19 |394.58||||||||||||||||||||||||||||||||||||| 1990.01.19 |

    86 710.75|||||||||||||||||||||||| 115

    e=1990-01-19 B100=394.5800 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=710.7500 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=14

    : Invalid data for jnk in line 15 13-24.

    : Invalid data for jnk in line 15 71-82.

    22 Jan 1990| 1990.01.22 |389.64||||||||||||||||||||||||||||||||||||| 1990.01.22 |

    86 706.85|||||||||||||||||||||||| 115

    e=1990-01-22 B100=389.6400 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=706.8500 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=15

    : Invalid data for jnk in line 16 13-24.

    : Invalid data for jnk in line 16 71-82.

    23 Jan 1990| 1990.01.23 |394.89||||||||||||||||||||||||||||||||||||| 1990.01.23 |

    86 722.01|||||||||||||||||||||||| 115

    e=1990-01-23 B100=394.8900 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=722.0100 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=16

    : Invalid data for jnk in line 17 13-24.

    : Invalid data for jnk in line 17 71-82.

    24 Jan 1990| 1990.01.24 |398.68||||||||||||||||||||||||||||||||||||| 1990.01.24 |

    86 718.95|||||||||||||||||||||||| 115

    e=1990-01-24 B100=398.6800 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=718.9500 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=17

    : Invalid data for jnk in line 18 13-24.

    : Invalid data for jnk in line 18 71-82.

  • 7/31/2019 SAS_Log

    19/82

    25 Jan 1990| 1990.01.25 |399.68||||||||||||||||||||||||||||||||||||| 1990.01.25 |

    86 716.23|||||||||||||||||||||||| 115

    e=1990-01-25 B100=399.6800 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=716.2300 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=18

    : Invalid data for jnk in line 19 13-24.

    : Invalid data for jnk in line 19 71-82.

    30 Jan 1990| 1990.01.30 |389.93||||||||||||||||||||||||||||||||||||| 1990.01.30 |

    86 701.08|||||||||||||||||||||||| 115

    e=1990-01-30 B100=389.9300 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=701.0800 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=19

    : Invalid data for jnk in line 20 13-24.

    : Invalid data for jnk in line 20 71-82.

    ING: Limit set by ERRORS= option reached. Further errors of this type will not be printed.

    31 Jan 1990| 1990.01.31 |380.34||||||||||||||||||||||||||||||||||||| 1990.01.31 |

    86 683.32|||||||||||||||||||||||| 115

    e=1990-01-31 B100=380.3400 B200=. B500=. BAuto=. BBankex=. BCapGoods=. BConsumerDurables=.

    llex100=. BDollex200=. BDollex30=. BFMCG=. BHealthcare=. BIT=. BMetal=. BMidCap=. BOilGas=.

    wer=. BPSU=. BRealty=. BSensex=683.3200 BSmallCap=. BTeck=. CNX100=. CNXBank=. CNXIT=.

    Midcap=. CNXNiftyJr=. NiftyMid50=. SnPCNX500=. SnPCNXDefty=. SnPCNXNifty=. SnPCNXNiftyTRI=.

    . _ERROR_=1 _N_=20

    : 5370 records were read from the infile "C:\Indices\projd\dat\raw\indx\01.txt".

    The minimum record length was 93.

    The maximum record length was 759.

    : The data set RAWDATA.TMP has 5370 observations and 33 variables.

    : DATA statement used (Total process time):

    real time 0.15 seconds

    cpu time 0.14 seconds

    : Appending RAWDATA.TMP to RAWDATA.INDX.

    : BASE data set does not exist. DATA file is being copied to BASE file.

    : There were 5370 observations read from the data set RAWDATA.TMP.

    : The data set RAWDATA.INDX has 5370 observations and 33 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\indx\02.txt" is:

    Filename=C:\Indices\projd\dat\raw\indx\02.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=20Apr2009:21:59:34,

    Create Time=06Oct2011:09:00:55

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\indx\02.txt".

    : The data set RAWDATA.TMP has 0 observations and 33 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

  • 7/31/2019 SAS_Log

    20/82

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.INDX.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.INDX has 5370 observations and 33 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.00 seconds

    : Deleting RAWDATA.TMP (memtype=DATA).

    : PROCEDURE DATASETS used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    75

    76 %readYr(stda)

    : The file RAWDATA.FO_STDA (memtype=DATA) was not found, but appears on a DELETE statement.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1991.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1991.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=708677,

    Last Modified=07Feb2012:21:32:02,

    Create Time=06Oct2011:09:00:57

    : 2649 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1991.txt".

    The minimum record length was 125.

    The maximum record length was 372.

    : The data set RAWDATA.TMP has 2649 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.04 seconds

    cpu time 0.03 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : BASE data set does not exist. DATA file is being copied to BASE file.

    : There were 2649 observations read from the data set RAWDATA.TMP.

    : The data set RAWDATA.FO_STDA has 2649 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

  • 7/31/2019 SAS_Log

    21/82

    : The infile "C:\Indices\projd\dat\raw\year\stda\1992.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1992.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=841006,

    Last Modified=07Feb2012:21:32:05,

    Create Time=06Oct2011:09:00:57

    : 3147 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1992.txt".

    The minimum record length was 119.

    The maximum record length was 380.

    : The data set RAWDATA.TMP has 3147 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.04 seconds

    cpu time 0.03 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 3147 observations read from the data set RAWDATA.TMP.

    : 3147 observations added.

    : The data set RAWDATA.FO_STDA has 5796 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1993.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1993.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=1053151,

    Last Modified=07Feb2012:21:32:10,

    Create Time=06Oct2011:09:00:57

    : 3994 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1993.txt".

    The minimum record length was 102.

    The maximum record length was 388.

    : The data set RAWDATA.TMP has 3994 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 3994 observations read from the data set RAWDATA.TMP.

    : 3994 observations added.

    : The data set RAWDATA.FO_STDA has 9790 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.00 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1994.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1994.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=1409316,

    Last Modified=07Feb2012:21:30:23,

  • 7/31/2019 SAS_Log

    22/82

    Create Time=06Oct2011:09:00:57

    : 5404 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1994.txt".

    The minimum record length was 101.

    The maximum record length was 389.

    : The data set RAWDATA.TMP has 5404 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.07 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 5404 observations read from the data set RAWDATA.TMP.

    : 5404 observations added.

    : The data set RAWDATA.FO_STDA has 15194 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1995.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1995.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=1873359,

    Last Modified=07Feb2012:21:31:03,

    Create Time=06Oct2011:09:00:57

    : 6955 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1995.txt".

    The minimum record length was 101.

    The maximum record length was 447.

    : The data set RAWDATA.TMP has 6955 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.18 seconds

    cpu time 0.04 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 6955 observations read from the data set RAWDATA.TMP.

    : 6955 observations added.

    : The data set RAWDATA.FO_STDA has 22149 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1996.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1996.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2054794,

    Last Modified=07Feb2012:21:31:58,

    Create Time=06Oct2011:09:00:58

    : 7336 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1996.txt".

    The minimum record length was 96.

  • 7/31/2019 SAS_Log

    23/82

    The maximum record length was 443.

    : The data set RAWDATA.TMP has 7336 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.06 seconds

    cpu time 0.04 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 7336 observations read from the data set RAWDATA.TMP.

    : 7336 observations added.

    : The data set RAWDATA.FO_STDA has 29485 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1997.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1997.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=1994549,

    Last Modified=07Feb2012:21:36:43,

    Create Time=06Oct2011:09:00:58

    : 7049 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1997.txt".

    The minimum record length was 97.

    The maximum record length was 458.

    : The data set RAWDATA.TMP has 7049 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.06 seconds

    cpu time 0.04 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 7049 observations read from the data set RAWDATA.TMP.

    : 7049 observations added.

    : The data set RAWDATA.FO_STDA has 36534 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1998.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1998.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2089024,

    Last Modified=07Feb2012:21:36:47,

    Create Time=06Oct2011:09:00:58

    : 7474 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1998.txt".

    The minimum record length was 95.

    The maximum record length was 454.

    : The data set RAWDATA.TMP has 7474 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.06 seconds

  • 7/31/2019 SAS_Log

    24/82

    cpu time 0.03 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 7474 observations read from the data set RAWDATA.TMP.

    : 7474 observations added.

    : The data set RAWDATA.FO_STDA has 44008 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\1999.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\1999.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2318574,

    Last Modified=07Feb2012:21:36:50,

    Create Time=06Oct2011:09:00:58

    : 8367 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\1999.txt".

    The minimum record length was 95.

    The maximum record length was 443.

    : The data set RAWDATA.TMP has 8367 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.07 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 8367 observations read from the data set RAWDATA.TMP.

    : 8367 observations added.

    : The data set RAWDATA.FO_STDA has 52375 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2000.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2000.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2410390,

    Last Modified=07Feb2012:21:36:54,

    Create Time=06Oct2011:09:00:58

    : 8671 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2000.txt".

    The minimum record length was 99.

    The maximum record length was 454.

    : The data set RAWDATA.TMP has 8671 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.07 seconds

    cpu time 0.06 seconds

  • 7/31/2019 SAS_Log

    25/82

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 8671 observations read from the data set RAWDATA.TMP.

    : 8671 observations added.

    : The data set RAWDATA.FO_STDA has 61046 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2001.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2001.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2481396,

    Last Modified=07Feb2012:21:36:59,

    Create Time=06Oct2011:09:00:58

    : 8927 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2001.txt".

    The minimum record length was 94.

    The maximum record length was 452.

    : The data set RAWDATA.TMP has 8927 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.06 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 8927 observations read from the data set RAWDATA.TMP.

    : 8927 observations added.

    : The data set RAWDATA.FO_STDA has 69973 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2002.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2002.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2784315,

    Last Modified=07Feb2012:21:36:25,

    Create Time=06Oct2011:09:00:59

    : 10076 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2002.txt".

    The minimum record length was 95.

    The maximum record length was 471.

    : The data set RAWDATA.TMP has 10076 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.06 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 10076 observations read from the data set RAWDATA.TMP.

    : 10076 observations added.

    : The data set RAWDATA.FO_STDA has 80049 observations and 63 variables.

  • 7/31/2019 SAS_Log

    26/82

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2003.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2003.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=3451226,

    Last Modified=07Feb2012:21:36:29,

    Create Time=06Oct2011:09:00:59

    : 12843 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2003.txt".

    The minimum record length was 93.

    The maximum record length was 476.

    : The data set RAWDATA.TMP has 12843 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.10 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 12843 observations read from the data set RAWDATA.TMP.

    : 12843 observations added.

    : The data set RAWDATA.FO_STDA has 92892 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2004.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2004.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=3828953,

    Last Modified=07Feb2012:21:36:32,

    Create Time=06Oct2011:09:00:59

    : 14499 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2004.txt".

    The minimum record length was 96.

    The maximum record length was 483.

    : The data set RAWDATA.TMP has 14499 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.10 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 14499 observations read from the data set RAWDATA.TMP.

    : 14499 observations added.

    : The data set RAWDATA.FO_STDA has 107391 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

  • 7/31/2019 SAS_Log

    27/82

    : The infile "C:\Indices\projd\dat\raw\year\stda\2005.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2005.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=4159803,

    Last Modified=07Feb2012:21:36:36,

    Create Time=06Oct2011:09:00:59

    : 15949 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2005.txt".

    The minimum record length was 94.

    The maximum record length was 488.

    : The data set RAWDATA.TMP has 15949 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.10 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 15949 observations read from the data set RAWDATA.TMP.

    : 15949 observations added.

    : The data set RAWDATA.FO_STDA has 123340 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2006.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2006.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=4363279,

    Last Modified=07Feb2012:21:36:40,

    Create Time=06Oct2011:09:00:59

    : 16712 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2006.txt".

    The minimum record length was 106.

    The maximum record length was 483.

    : The data set RAWDATA.TMP has 16712 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.12 seconds

    cpu time 0.12 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 16712 observations read from the data set RAWDATA.TMP.

    : 16712 observations added.

    : The data set RAWDATA.FO_STDA has 140052 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2007.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2007.txt,

  • 7/31/2019 SAS_Log

    28/82

    RECFM=V,LRECL=1024,File Size (bytes)=4503904,

    Last Modified=04Feb2012:13:05:26,

    Create Time=04Feb2012:12:52:27

    : 17215 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2007.txt".

    The minimum record length was 108.

    The maximum record length was 494.

    : The data set RAWDATA.TMP has 17215 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.12 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 17215 observations read from the data set RAWDATA.TMP.

    : 17215 observations added.

    : The data set RAWDATA.FO_STDA has 157267 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.04 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2008.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2008.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=4694999,

    Last Modified=04Feb2012:13:05:24,

    Create Time=04Feb2012:12:52:27

    : 17917 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2008.txt".

    The minimum record length was 98.

    The maximum record length was 500.

    : The data set RAWDATA.TMP has 17917 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 17917 observations read from the data set RAWDATA.TMP.

    : 17917 observations added.

    : The data set RAWDATA.FO_STDA has 175184 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2009.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2009.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=4832674,

    Last Modified=04Feb2012:13:05:22,

    Create Time=04Feb2012:12:52:27

  • 7/31/2019 SAS_Log

    29/82

    : 18418 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2009.txt".

    The minimum record length was 104.

    The maximum record length was 511.

    : The data set RAWDATA.TMP has 18418 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.90 seconds

    cpu time 0.10 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 18418 observations read from the data set RAWDATA.TMP.

    : 18418 observations added.

    : The data set RAWDATA.FO_STDA has 193602 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2010.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2010.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=4444892,

    Last Modified=04Feb2012:13:05:20,

    Create Time=04Feb2012:12:52:27

    : 16858 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2010.txt".

    The minimum record length was 120.

    The maximum record length was 517.

    : The data set RAWDATA.TMP has 16858 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.09 seconds

    cpu time 0.09 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 16858 observations read from the data set RAWDATA.TMP.

    : 16858 observations added.

    : The data set RAWDATA.FO_STDA has 210460 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\stda\2011.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\stda\2011.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=2165649,

    Last Modified=07Feb2012:21:39:27,

    Create Time=04Feb2012:12:52:27

    : 7768 records were read from the infile "C:\Indices\projd\dat\raw\year\stda\2011.txt".

    The minimum record length was 122.

    The maximum record length was 512.

    : The data set RAWDATA.TMP has 7768 observations and 63 variables.

  • 7/31/2019 SAS_Log

    30/82

    : DATA statement used (Total process time):

    real time 0.07 seconds

    cpu time 0.04 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_STDA.

    : There were 7768 observations read from the data set RAWDATA.TMP.

    : 7768 observations added.

    : The data set RAWDATA.FO_STDA has 218228 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : There were 218228 observations read from the data set RAWDATA.FO_STDA.

    : The data set RAWDATA.A_FO_STDA has 218228 observations and 63 variables.

    : PROCEDURE SORT used (Total process time):

    real time 3.19 seconds

    cpu time 0.79 seconds

    : MERGE statement has more than one data set with repeats of BY values.

    : There were 29400 observations read from the data set RAWDATA.COMPLST.

    : There were 218228 observations read from the data set RAWDATA.A_FO_STDA.

    : The data set RAWDATA.FO_STDA has 218223 observations and 66 variables.

    : The data set RAWDATA.ERR_CIDM_FO_STDA has 3071 observations and 67 variables.

    : DATA statement used (Total process time):

    real time 6.25 seconds

    cpu time 0.32 seconds

    : There were 3071 observations read from the data set RAWDATA.ERR_CIDM_FO_STDA.

    : The data set RAWDATA.ERR_CIDM_FO_STDA has 3071 observations and 67 variables.

    : PROCEDURE SORT used (Total process time):

    real time 0.60 seconds

    cpu time 0.00 seconds

    : Deleting RAWDATA.A_FO_STDA (memtype=DATA).

    : PROCEDURE DATASETS used (Total process time):

    real time 2.07 seconds

    cpu time 0.01 seconds

    : Deleting RAWDATA.TMP (memtype=DATA).

    : PROCEDURE DATASETS used (Total process time):

    real time 1.04 seconds

    cpu time 0.00 seconds

    77 %readYr(cons)

  • 7/31/2019 SAS_Log

    31/82

    : The file RAWDATA.FO_CONS (memtype=DATA) was not found, but appears on a DELETE statement.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.28 seconds

    cpu time 0.00 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1991.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1991.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:01,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1991.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.00 seconds

    cpu time 0.00 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : BASE data set does not exist. DATA file is being copied to BASE file.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.26 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1992.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1992.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:19,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1992.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.20 seconds

    cpu time 0.01 seconds

  • 7/31/2019 SAS_Log

    32/82

    : The infile "C:\Indices\projd\dat\raw\year\cons\1993.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1993.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:35,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1993.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1994.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1994.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:45,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1994.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1995.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1995.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:52,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1995.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

  • 7/31/2019 SAS_Log

    33/82

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.00 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.07 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1996.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1996.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:11:58,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1996.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1997.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1997.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:12:04,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1997.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.00 seconds

    cpu time 0.00 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

  • 7/31/2019 SAS_Log

    34/82

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1998.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1998.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:12:11,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1998.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.11 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\1999.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\1999.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=0,

    Last Modified=24Apr2009:14:12:17,

    Create Time=06Oct2011:09:00:56

    : 0 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\1999.txt".

    : The data set RAWDATA.TMP has 0 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.00 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 0 observations read from the data set RAWDATA.TMP.

    : 0 observations added.

    : The data set RAWDATA.FO_CONS has 0 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.03 seconds

  • 7/31/2019 SAS_Log

    35/82

    : The infile "C:\Indices\projd\dat\raw\year\cons\2000.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2000.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=796,

    Last Modified=07Feb2012:21:45:29,

    Create Time=06Oct2011:09:00:56

    : 3 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2000.txt".

    The minimum record length was 93.

    The maximum record length was 354.

    : The data set RAWDATA.TMP has 3 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.03 seconds

    cpu time 0.03 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 3 observations read from the data set RAWDATA.TMP.

    : 3 observations added.

    : The data set RAWDATA.FO_CONS has 3 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.09 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2001.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2001.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=16596,

    Last Modified=07Feb2012:21:45:34,

    Create Time=06Oct2011:09:00:56

    : 54 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2001.txt".

    The minimum record length was 112.

    The maximum record length was 416.

    : The data set RAWDATA.TMP has 54 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.01 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 54 observations read from the data set RAWDATA.TMP.

    : 54 observations added.

    : The data set RAWDATA.FO_CONS has 57 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.07 seconds

    cpu time 0.03 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2002.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2002.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=224573,

    Last Modified=07Feb2012:21:45:47,

  • 7/31/2019 SAS_Log

    36/82

    Create Time=06Oct2011:09:00:56

    : 717 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2002.txt".

    The minimum record length was 197.

    The maximum record length was 456.

    : The data set RAWDATA.TMP has 717 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 717 observations read from the data set RAWDATA.TMP.

    : 717 observations added.

    : The data set RAWDATA.FO_CONS has 774 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2003.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2003.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=269044,

    Last Modified=07Feb2012:21:45:11,

    Create Time=06Oct2011:09:00:56

    : 837 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2003.txt".

    The minimum record length was 195.

    The maximum record length was 491.

    : The data set RAWDATA.TMP has 837 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.04 seconds

    cpu time 0.03 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 837 observations read from the data set RAWDATA.TMP.

    : 837 observations added.

    : The data set RAWDATA.FO_CONS has 1611 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.00 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2004.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2004.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=272081,

    Last Modified=07Feb2012:21:45:16,

    Create Time=06Oct2011:09:00:56

    : 841 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2004.txt".

    The minimum record length was 203.

  • 7/31/2019 SAS_Log

    37/82

    The maximum record length was 487.

    : The data set RAWDATA.TMP has 841 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.03 seconds

    cpu time 0.01 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 841 observations read from the data set RAWDATA.TMP.

    : 841 observations added.

    : The data set RAWDATA.FO_CONS has 2452 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.06 seconds

    cpu time 0.00 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2005.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2005.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=297529,

    Last Modified=07Feb2012:21:45:19,

    Create Time=06Oct2011:09:00:56

    : 915 records were read from the infile "C:\Indices\projd\dat\raw\year\cons\2005.txt".

    The minimum record length was 95.

    The maximum record length was 493.

    : The data set RAWDATA.TMP has 915 observations and 63 variables.

    : DATA statement used (Total process time):

    real time 0.03 seconds

    cpu time 0.00 seconds

    : Appending RAWDATA.TMP to RAWDATA.FO_CONS.

    : There were 915 observations read from the data set RAWDATA.TMP.

    : 915 observations added.

    : The data set RAWDATA.FO_CONS has 3367 observations and 63 variables.

    : PROCEDURE DATASETS used (Total process time):

    real time 0.04 seconds

    cpu time 0.01 seconds

    : The infile "C:\Indices\projd\dat\raw\year\cons\2006.txt" is:

    Filename=C:\Indices\projd\dat\raw\year\cons\2006.txt,

    RECFM=V,LRECL=1024,File Size (bytes)=352952,