home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / sasl / 5728 < prev    next >
Encoding:
Text File  |  1993-01-23  |  2.2 KB  |  57 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!PHPDLS1.EM.CDC.GOV!RJF2
  3. Encoding: 43 TEXT
  4. X-Mailer: Microsoft Mail V3.0
  5. Message-ID: <2B5FBC71@router.em.cdc.gov>
  6. Newsgroups: bit.listserv.sas-l
  7. Date:         Fri, 22 Jan 1993 13:21:00 EST
  8. Reply-To:     rjf2@PHPDLS1.EM.CDC.GOV
  9. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  10. From:         rjf2@PHPDLS1.EM.CDC.GOV
  11. Subject:      Concatenating format catalogs under 6.07
  12. Comments: To: SAS-L@uga.cc.uga.edu
  13. Lines: 42
  14.  
  15. content      : Response
  16. summary      : use of several format-libs:
  17.                use multiple LIBNAME LIBRARY '<libref>'; statements
  18. rlse/platform: V6.07 / MVS
  19. Ron Fehd     :                SMTP:BitNet:    <rjf2@phpdls1.em.cdc.gov>
  20.               Centers for Disease Control
  21.               1600 Clifton Rd  MS:G25         FAX  : 404/639-1778
  22.               Atlanta, GA 30333  USA          phone: 404/639-1707
  23. ?????????????????????????????????????????????????????????????????????????
  24. From:         Jeff Davis <NY921603%PACEVM.BITNET@uga.cc.uga.edu>
  25. Subject:      Concatenating format catalogs under 6.07
  26. Does anyone know how to access more than one format catalog under
  27. SAS 6.07 in the same SAS session or job?  Under MVS SAS 5.18 you
  28. were able to concatenate the format libraries in the JCL.  Can you
  29. concatenate 6.07 format catalogs in MVS?  What about CMS?  I
  30. **don't** want to have to use PROC CATALOG to copy the format
  31. entries to the WORK format catalog.  I have not been able to find
  32. anything in Language, Procedures, Language and Procedures,
  33. Companion for CMS or Companion for MVS.
  34.  
  35. Any clue?
  36. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  37. somewhere, (in a galaxy far, far away,) I remember reading that you can
  38. access multiple sets of formats stored in different SAS libraries by using
  39. several LIBNAME statements with the same libref=LIBRARY:
  40.  
  41. LIBNAME LIBRARY '<SAS-data-lib-1>';
  42. <use formats>;
  43. run;
  44. LIBNAME LIBRARY '<SAS-data-lib-2>';
  45. <use formats>;
  46. run;
  47. ...
  48. LIBNAME LIBRARY '<SAS-data-lib-n>';
  49. <use formats>;
  50. endSAS;
  51.  
  52. check your proc FORMAT information:
  53. SAS Proc Guide,V6 pg 280: Storing Formats and Informats
  54.                   pg 295-6: Temporary and Permanent Formats and Informats
  55.  
  56. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!happy crunching*************************
  57.