home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / bit / listserv / sasl / 4128 < prev    next >
Encoding:
Text File  |  1992-09-10  |  3.1 KB  |  98 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!TEMPLEVM.BITNET!V1354G
  3. Message-ID: <SAS-L%92091009270726@OHSTVMA.IRCC.OHIO-STATE.EDU>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Thu, 10 Sep 1992 09:25:16 EDT
  6. Reply-To:     Ekeho <V1354G@TEMPLEVM.BITNET>
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         Ekeho <V1354G@TEMPLEVM.BITNET>
  9. Subject:      BMDP
  10. Lines: 86
  11.  
  12. Hi Folks:
  13.      I am testing a SAS program in Page 185 "SAS Companion for the CMS
  14. Environment".  The following program is to create and to convert
  15.  BMDP file to SAS data set. When I test BMDP1d, it works.
  16. May be there is a linkage problem. Any one has the same problem.
  17.  My engine is SAS 6.06 on CMS.
  18. I am looking forward to your help.
  19. =======================================================================
  20. 11                                                          The SAS System
  21.  
  22.  NOTE: Copyright(c) 1989 by SAS Institute Inc., Cary, NC USA.
  23.  NOTE: SAS (r) Proprietary Software Release 6.06.01
  24.        Licensed to TEMPLE UNIVERSITY COMPUTER ACTIVITY, Site 0003844001.
  25.  
  26.  
  27.  
  28.   Welcome to the new SAS System, Release 6.06.
  29.  
  30.   This message is seen by users when the NEWS option is specified.
  31.   You can replace this message with your own by editing the NEWS file.
  32.  
  33.   Changes and enhancements available in SAS Release 6.06 are documented
  34.   in the online Host Help.
  35.  
  36.  1          DATA TEMP;
  37.  2             INPUT A B C;
  38.  3             CARDS;
  39.  
  40.  NOTE: The data set WORK.TEMP has 3 observations and 3 variables.
  41.  
  42.  7          ;
  43.  8          PROC CONTENTS;
  44.  9            TITLE 'CONTENTS OF SAS DATA SET TO BE RUN THROUGH BMDP1D';
  45.  10         RUN;
  46.  
  47.  NOTE: The PROCEDURE CONTENTS printed page 1.
  48.  
  49.  11         PROC BMDP PROG=BMDP1D DATA=TEMP UNIT=3;
  50.  12           PARMCARDS;
  51.  
  52.  
  53.  ERROR: The BMDP1D program could not be loaded.
  54. +ERROR: The BMDP1D program could not be loaded.
  55. +ERROR: The BMDP1D program could not be loaded.
  56.  NOTE: The SAS System stopped processing this step because of errors.
  57.  
  58.  
  59.  18         ;
  60.  19         PROC CONVERT BMDP=FT04F001 OUT=FROMBMDP;
  61.  20         RUN;
  62.  
  63.  ERROR: Physical file does not exist, FILE     FT04F001 A4.
  64. +ERROR: Physical file does not exist, FILE     FT04F001 A4.
  65. +ERROR: Physical file does not exist, FILE     FT04F001 A4.
  66.  NOTE: The data set WORK.FROMBMDP has 0 observations and 0 variables.
  67.  
  68.  21         PROC CONTENTS;
  69.  22             TITLE 'SAS DATA SET CONVERTED FROM BMDP SAVE FILE';
  70.  23         RUN;
  71.  
  72.  NOTE: The PROCEDURE CONTENTS printed page 2.
  73.  
  74.  24         PROC PRINT;
  75.  25         RUN;
  76.  
  77.  NOTE: No variables in data set WORK.FROMBMDP.
  78.  NOTE: The SAS System stopped processing this step because of errors.
  79.  
  80.  
  81.  ERROR: Errors printed on page 1.
  82. +ERROR: Errors printed on page 1.
  83. +ERROR: Errors printed on page 1.
  84.  
  85.  NOTE: SAS Institute Inc., SAS Circle, PO Box 8000, Cary, NC 27512-8000
  86. ===============================================================
  87.  
  88. Ekeho Oh
  89.  
  90. Internet: V1354G@VM.TEMPLE.EDU     Home: 534 W.Pike St
  91. Bitnet:   V1354G@TEMPLEVM                Philadelhpia, PA 19140
  92. Dep't of Statistics                      215-223-6485
  93. Temple University
  94. Philadelphia, PA 19122
  95. USA
  96.  
  97. ===============================================================
  98.