- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Oracle RDB Install on Itanium
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 06:24 AM
05-29-2007 06:24 AM
" excessive error rate reading rdbv72120..."
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...
Thanks in advance.
Warren
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 06:50 AM
05-29-2007 06:50 AM
Re: Oracle RDB Install on Itanium
There is a tool on the freeware kits.
And you can just dump the first block and figure it out.
I like my solution best :-)
--------- fixsavset.com -----------------
$IF p1.EQS."" THEN INQUIRE p1 "Save set file name ?"
$IF f$search(p1).EQS."" THEN EXIT
$WRITE SYS$OUTPUT " RFM was ", F$FILE(p1,"RFM"), ", MRS = ", -
F$FILE(p1,"MRS"), ", LRL = ", F$FILE(p1,"LRL"), "."
$SET FILE /ATTR=(RFM=FIX, MRS=44, LRL=44) 'p1 ! Easier for DCL
$OPEN/READ file 'p1
$READ file record
$CLOSE file
$mrs = F$CVSI(40*8,32,record)
$WRITE SYS$OUTPUT "Setting blocksize to: ",MRS
$SET FILE /ATTR=(RFM=FIX, MRS='mrs', LRL='mrs') 'p1
--------- check_savset.com -----------------
If you just want to look, without changing the file or the file attributes:
$IF p1.EQS."" THEN INQUIRE p1 "Save set file name ?"
$IF f$search(p1).EQS."" THEN EXIT
$IF F$FILE(p1,"MRS").GT.512 THEN GOTO no_can_do
$OPEN/READ file 'p1
$READ file record
$CLOSE file
$mrs = F$CVSI(40*8,32,record)
$WRITE SYS$OUTPUT "Backup blocksize used was: ",MRS
$EXIT
$no_can_do:
$type sys$input
The record size for the selected file is larger than 512.
This script cannot be used for that file.
$exit
Cheers,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 09:05 AM
05-29-2007 09:05 AM
Solution$ set noon
$ if p1.eqs."".or.f$search(p1).eqs."" then exit
$ ! put correct characteristics for a save set, and later the correct lrl
$ ! which will be very often 32256 or 9216
$ set file/attr=(rfm:fix,rat:none,mrs:32256,lrl:32256) 'p1
$ pipe bac/lis/ana 'p1/sav | sea sys$pipe "blocksize =" | -
( read SYS$PIPE TMP ; DEFINE/JOB/NOLOG TMP &TMP )
$ tmp1 = f$trnlnm("tmp","lnm$job","super",,)
$ loc = f$locate("=",tmp1)
$ blocks = f$extract(loc+2,5,tmp1)
$ set fil/attr=(lrl:'blocks,mrs:'blocks) 'p1
$ exit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 09:24 AM
05-29-2007 09:24 AM
Re: Oracle RDB Install on Itanium
Created that com file and ran. Worked like a champ ! I am into the install.
Muchas Gracias !!!!
Warren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 09:25 AM
05-29-2007 09:25 AM
Re: Oracle RDB Install on Itanium
Warren