home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / vms / 19838 < prev    next >
Encoding:
Internet Message Format  |  1992-12-24  |  3.2 KB

  1. Path: sparky!uunet!gatech!usenet.ins.cwru.edu!agate!dog.ee.lbl.gov!ucbvax!MCIMAIL.COM!0003751365
  2. From: 0003751365@MCIMAIL.COM ("Thomas J. Klotzbach")
  3. Newsgroups: comp.os.vms
  4. Subject: DECserver 300 V2.2 TSM Get_char file doesn't work w/ TSM V1.6
  5. Message-ID: <80921223135508.0003751365NA1EM@mcimail.com>
  6. Date: 23 Dec 92 13:55:00 GMT
  7. Sender: usenet@ucbvax.BERKELEY.EDU
  8. Organization: The Internet
  9. Lines: 77
  10.  
  11.  
  12.     Just to let folks know of a problem with the TSM$DS3_V22_GET_CHAR.COM
  13. command file that is supplied with the DECserver 300 for VMS V2.2 software
  14. release.  This problem started after I upgraded from DECserver 300 for VMS 2.1
  15. to V2.2.  We are currently running TSM V1.6.
  16.  
  17.     Here's what happens...
  18.  
  19. $ @TSM$DS3_V22_GET_CHAR D200B password
  20. %TSM-I-CREATE, Creating TSM output file
  21. SYS$SYSROOT:[DECSERVER]TSM$DS3_VXX_TEMP_OUTFILE.TMP;1 22-DEC-1992 19:33:23.45
  22.  Checking TSM version for compatibility with DS300 software version V2.2.
  23.  Version V2.2 software on the target server not supported by this procedure.
  24.  
  25.  
  26.    I have identified the following sections in
  27. SYS$COMMON:[DECSERVER]TSM$DS3_V22_GET_CHAR.COM as causing the problem and have
  28. also added the fixes...
  29. .
  30. .
  31. .
  32. $get_TSM_version:
  33. $       If Ver Then write sys$output " Checking TSM version for compatibility
  34. with DS300 software version ''software_version_string'."
  35. $read_TSM_version:
  36. $       read /end=done in line
  37. $       clue = f$extract(0, 8, line)
  38. $       IF clue .nes. "Terminal" then goto read_TSM_version
  39. $       version_string = f$element(3," ",line)
  40. $       IF software_version_string .eqs. "V2.0" then goto clear_v1
  41. $       IF software_version_string .eqs. "V2.1" then goto clear_v2
  42. $ !
  43. $ ! Next line added to fix DS300 V2.2 software compatibility problem
  44. $ !
  45. $       IF software_version_string .eqs. "V2.2" then goto clear_v2
  46. $       write sys$output " Version ''software_version_string' software on the
  47. target server not supported by this procedure."
  48. $       goto done
  49. $!
  50. $clear_v1:
  51. $       IF version_string .eqs. "V1.4" then goto TSM_ver_ok
  52. $       write sys$output ""
  53. $       write sys$output "      ** Warning - This procedure requires TSM version
  54. V1.4 **"
  55. $       write sys$output "      **   for full compatibility with the target
  56. server.   **"
  57. $       write sys$output ""
  58. $       goto DS300_ok
  59. $clear_v2:
  60. $ !
  61. $ ! Added tests for TSM V1.6 and V1.6A to fix TSM version warning message
  62. $ !
  63. $       IF (version_string .eqs. "V1.5") .or. -
  64.            (version_string .eqs. "T1.5") .or. -
  65.            (version_string .eqs. "V1.6") .or. -
  66.            (version_string .eqs. "V1.6A") then goto TSM_ver_ok
  67. $       write sys$output ""
  68. $       write sys$output "      ** Warning - This procedure requires TSM version
  69. V1.5 **"
  70. $       write sys$output "      **   for full compatibility with the target
  71. server.   **"
  72. $       write sys$output ""
  73. $       goto DS300_ok
  74. .
  75. .
  76. .
  77.  
  78.  
  79.     DEC states that they will address the above problem(s) in some sort of
  80. article in the LAT-DECSERVER DSNlink database.
  81.  
  82. *******************************************************************************
  83. Thomas J. Klotzbach                   MCI Mail: 375-1365
  84. Genesee Community College             Internet: 3751365@mcimail.com
  85. Batavia, NY 14020                               klotzbtj@snybufva.cs.snybuf.edu
  86.                                       Work: (716) 343-0055 x358
  87.  
  88.