<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Oracle RDB Install on Itanium in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049734#M24409</link>
    <description>another procedure, give the saveset as P1&lt;BR /&gt;&lt;BR /&gt;$ set noon &lt;BR /&gt;$ if p1.eqs."".or.f$search(p1).eqs."" then exit &lt;BR /&gt;$ ! put correct characteristics for a save set, and later the correct lrl &lt;BR /&gt;$ ! which will be very often 32256 or 9216 &lt;BR /&gt;$ set file/attr=(rfm:fix,rat:none,mrs:32256,lrl:32256) 'p1 &lt;BR /&gt;$ pipe bac/lis/ana 'p1/sav | sea sys$pipe "blocksize =" | - &lt;BR /&gt;( read SYS$PIPE TMP ; DEFINE/JOB/NOLOG TMP &amp;amp;TMP ) &lt;BR /&gt;$ tmp1 = f$trnlnm("tmp","lnm$job","super",,) &lt;BR /&gt;$ loc = f$locate("=",tmp1) &lt;BR /&gt;$ blocks = f$extract(loc+2,5,tmp1) &lt;BR /&gt;$ set fil/attr=(lrl:'blocks,mrs:'blocks) 'p1 &lt;BR /&gt;$ exit</description>
    <pubDate>Tue, 29 May 2007 16:05:57 GMT</pubDate>
    <dc:creator>labadie_1</dc:creator>
    <dc:date>2007-05-29T16:05:57Z</dc:date>
    <item>
      <title>Oracle RDB Install on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049732#M24407</link>
      <description>Pulled the RDB 7.2.1.2 for OpenVMS savesets down from the Oracle website to install on a HP Integrity rx6600 server running OpenVMS 8.3. Unzipped and copied (FTPed) savesets over to server. When I do the $@sys$update:vmsinstal, I get following error message:&lt;BR /&gt;&lt;BR /&gt;" excessive error rate reading rdbv72120..."&lt;BR /&gt;&lt;BR /&gt;I KNOW this error has to do with me having NOT set the file attributes of the savesets.( ie, $ set file/att=(rfm=fix,lrl=???,rat=none) or something like that. I just need to know the exact file atributes to set these savesets to as I have not been able to find them documented anywhere. Once I get this info, I'll be good...&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Warren &lt;BR /&gt;</description>
      <pubDate>Tue, 29 May 2007 13:24:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049732#M24407</guid>
      <dc:creator>Warren G Landrum</dc:creator>
      <dc:date>2007-05-29T13:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle RDB Install on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049733#M24408</link>
      <description>Google: saveset fix openvms&lt;BR /&gt;&lt;BR /&gt;There is a tool on the freeware kits.&lt;BR /&gt;And you can just dump the first block and figure it out.&lt;BR /&gt;&lt;BR /&gt;I like my solution best :-)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--------- fixsavset.com -----------------&lt;BR /&gt;$IF p1.EQS."" THEN INQUIRE p1 "Save set file name ?"&lt;BR /&gt;$IF f$search(p1).EQS."" THEN EXIT&lt;BR /&gt;$WRITE SYS$OUTPUT " RFM was ", F$FILE(p1,"RFM"), ", MRS = ", -&lt;BR /&gt;F$FILE(p1,"MRS"), ", LRL = ", F$FILE(p1,"LRL"), "."&lt;BR /&gt;$SET FILE /ATTR=(RFM=FIX, MRS=44, LRL=44) 'p1 ! Easier for DCL&lt;BR /&gt;$OPEN/READ file 'p1&lt;BR /&gt;$READ file record&lt;BR /&gt;$CLOSE file&lt;BR /&gt;$mrs = F$CVSI(40*8,32,record)&lt;BR /&gt;$WRITE SYS$OUTPUT "Setting blocksize to: ",MRS&lt;BR /&gt;$SET FILE /ATTR=(RFM=FIX, MRS='mrs', LRL='mrs') 'p1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--------- check_savset.com -----------------&lt;BR /&gt;&lt;BR /&gt;If you just want to look, without changing the file or the file attributes:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$IF p1.EQS."" THEN INQUIRE p1 "Save set file name ?"&lt;BR /&gt;$IF f$search(p1).EQS."" THEN EXIT&lt;BR /&gt;$IF F$FILE(p1,"MRS").GT.512 THEN GOTO no_can_do&lt;BR /&gt;$OPEN/READ file 'p1&lt;BR /&gt;$READ file record&lt;BR /&gt;$CLOSE file&lt;BR /&gt;$mrs = F$CVSI(40*8,32,record)&lt;BR /&gt;$WRITE SYS$OUTPUT "Backup blocksize used was: ",MRS&lt;BR /&gt;$EXIT&lt;BR /&gt;$no_can_do:&lt;BR /&gt;$type sys$input&lt;BR /&gt;&lt;BR /&gt;The record size for the selected file is larger than 512.&lt;BR /&gt;This script cannot be used for that file.&lt;BR /&gt;&lt;BR /&gt;$exit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 29 May 2007 13:50:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049733#M24408</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-05-29T13:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle RDB Install on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049734#M24409</link>
      <description>another procedure, give the saveset as P1&lt;BR /&gt;&lt;BR /&gt;$ set noon &lt;BR /&gt;$ if p1.eqs."".or.f$search(p1).eqs."" then exit &lt;BR /&gt;$ ! put correct characteristics for a save set, and later the correct lrl &lt;BR /&gt;$ ! which will be very often 32256 or 9216 &lt;BR /&gt;$ set file/attr=(rfm:fix,rat:none,mrs:32256,lrl:32256) 'p1 &lt;BR /&gt;$ pipe bac/lis/ana 'p1/sav | sea sys$pipe "blocksize =" | - &lt;BR /&gt;( read SYS$PIPE TMP ; DEFINE/JOB/NOLOG TMP &amp;amp;TMP ) &lt;BR /&gt;$ tmp1 = f$trnlnm("tmp","lnm$job","super",,) &lt;BR /&gt;$ loc = f$locate("=",tmp1) &lt;BR /&gt;$ blocks = f$extract(loc+2,5,tmp1) &lt;BR /&gt;$ set fil/attr=(lrl:'blocks,mrs:'blocks) 'p1 &lt;BR /&gt;$ exit</description>
      <pubDate>Tue, 29 May 2007 16:05:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049734#M24409</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2007-05-29T16:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle RDB Install on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049735#M24410</link>
      <description>Labadie,&lt;BR /&gt;&lt;BR /&gt;Created that com file and ran. Worked like a champ ! I am into the install.&lt;BR /&gt;&lt;BR /&gt;Muchas Gracias !!!!&lt;BR /&gt;&lt;BR /&gt;Warren</description>
      <pubDate>Tue, 29 May 2007 16:24:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049735#M24410</guid>
      <dc:creator>Warren G Landrum</dc:creator>
      <dc:date>2007-05-29T16:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle RDB Install on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049736#M24411</link>
      <description>Thred closed. Got answer from labadie !!&lt;BR /&gt;&lt;BR /&gt;Warren</description>
      <pubDate>Tue, 29 May 2007 16:25:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/oracle-rdb-install-on-itanium/m-p/5049736#M24411</guid>
      <dc:creator>Warren G Landrum</dc:creator>
      <dc:date>2007-05-29T16:25:57Z</dc:date>
    </item>
  </channel>
</rss>

