skip book previous and next navigation links
go up to top of book: HP Volume Shadowing for OpenVMS HP Volume Shadowing for OpenVMS
go to beginning of chapter: Creating and Managing Shadow Sets with System... Creating and Managing Shadow Sets with System...
go to previous page: $MOUNT Shadow Set Item Codes $MOUNT Shadow Set Item Codes
go to next page: Using $DISMOU to Dismount Shadow SetsUsing $DISMOU to Dismount Shadow Sets
end of book navigation links

Using $MOUNT to Mount Volume Sets   



When mounting volume sets, always list the volume with the largest storage capacity first. You should name the largest volume first because the volume set and directory information goes on the first volume listed in a MOUNT command line. A small-capacity disk may not have adequate storage for the volume and directory information.

Item List to Create and Mount a Volume Set shows the MACRO-32 statements required to produce a $MOUNT system service item to mount a volume set that contains two shadow sets.
Example 3  Item List to Create and Mount a Volume Set  
DSA23:  .ASCID /DSA23:/
DSA51:  .ASCID /DSA51:/
MEMBER009:   .ASCID /$4$DUA9:/
MEMBER005:   .ASCID /$4$DUA5:/
MEMBER010:  .ASCID /$4$DUA10:/
MEMBER012:  .ASCID /$4$DUA12:/
MEMBER003:   .ASCID /$4$DUA3:/
MEMBER034:  .ASCID /$4$DUA34:/
VOLUME_WORK1:  .ASCID /WORK1/
VOLUME_WORK2:  .ASCID /WORK2/
VOLUME_LOGNM:  .ASCID /WRKD$/
 
        .MACRO   .ITEM, SIZE, CODE, BUFFER, RETURN=0
        .WORD    SIZE, CODE
        .ADDRESS BUFFER, RETURN
        .ENDM    .ITEM
 
ITMLST: .ITEM   6, MNT$_SHANAM, DSA23  
        .ITEM   8, MNT$_SHAMEM, MEMBER009   
        .ITEM   8, MNT$_SHAMEM, MEMBER005
        .ITEM   9, MNT$_SHAMEM, MEMBER010
        .ITEM   5, MNT$_VOLNAM, VOLUME_WORK1  
        .ITEM   6, MNT$_SHANAM, DSA51  
        .ITEM   9, MNT$_SHAMEM, MEMBER012  
        .ITEM   8, MNT$_SHAMEM, MEMBER003
        .ITEM   9, MNT$_SHAMEM, MEMBER034
        .ITEM   5, MNT$_VOLNAM, VOLUME_WORK2   
        .ITEM   5, MNT$_LOGNAM, VOLUME_LOGNM   
        .LONG   


The following list describes the elements in Item List to Create and Mount a Volume Set:


go to previous page: $MOUNT Shadow Set Item Codes $MOUNT Shadow Set Item Codes
go to next page: Using $DISMOU to Dismount Shadow SetsUsing $DISMOU to Dismount Shadow Sets