[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference orarep::nomahs::rdb_60

Title:Oracle Rdb - Still a strategic database for DEC on Alpha AXP!
Notice:RDB_60 is archived, please use RDB_70..
Moderator:NOVA::SMITHISON
Created:Fri Mar 18 1994
Last Modified:Fri May 30 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:5118
Total number of notes:28246

5045.0. "AIJ causes hang??" by 4107::PLINDGRE (A customer called...) Wed Feb 19 1997 03:29

    Hi all, 
     
    this is a bit vague but it's all I got right now. 
     
    Environment: 
     
    Rdb 7.0, Alpha,  OpenVMS  
     
    Problem: 
     
    The customer is going to enable ROW caching, to prepare for this he has 
    enabled circular AIJ with 8 AIJ-files (see below) and turned on FAST
    COMMIT. 
     
    He has discovered that if he has enabled AIJ his transaction processing
    will "slow down" or hang for some minutes waiting for some pages in
    RDB$SYSTEM. This happens after about 6000-9000 committed transactions.
    After this "hang" transaction processing will act "normal" again but
    after 500-1000 this situation will recur over and over again. 
     
    The transactions involved are READ transactions used for some complex 
    calculation in the application. When this calculation is done an WRITE 
    transaction is started and an UPDATE is done. The hung situation is
    from the READ transactions. 
     
    If we turn AIJ off this situation will not occur.  
     
    There is no change if we turn FAST COMMIT of or on.   
     
    ABS is enabled (see below). 
     
    Could there be some check pointing involved? 
     
     
    Any hints appreciated. 
     
     
    Regards 
     
    Peter 
    
T.RTitleUserPersonal
Name
DateLines
5045.1NOVA::R_ANDERSONOracle Corporation (603) 881-1935Wed Feb 19 1997 07:1514
Is the customer using the "overwrite" AIJ option?  The overwrite option could
cause this type of "pause" during the overwrite operation.

Are the AIJ journals properly sized?  If the journals are too small, and a lot
of switch-overs occur, this could cause pauses if the AIJ backup cannot keep up.

Are they using the ABS?  If not, I highly recommend it.

Are they using the ALS?  If not, I highly recommend it.

Finally, and I *have* to ask this, what does the SHOW STATS "stall message"
screen indicate is happening during the pause?

Rick
5045.2NOVA::R_ANDERSONOracle Corporation (603) 881-1935Wed Feb 19 1997 07:184
Also, check the number of allocated ARBs.  Make sure the ARBs are NOT being
exhausted.  Check the "Pool Empty" stat in the "Group Commit Statistics" screen.

Rick
5045.3AIJ definition script4107::PLINDGREA customer called...Wed Feb 19 1997 08:3954
    Sorry Rick I missed to put this in (my "see below" pointer in .0 was
    pointing to nothing)
    
    
    - yes ABS and ALS is enabled 
    - the stall message screen showes 6-7 processes "waiting for page 1:nnnn"  
      (I'm checking what table/index, but it must be in RDB$SYSTEM) 
    - I'm waiting for the ARB info.
    - also asked customer to send me the output from RMU/SHOW LOCK/MODE=BLOCKING
    
     Here's the script for the AIJ-definitions:
    
         ALTER DATABASE FILENAME BBV_DB NUMBER OF CLUSTER NODES IS 1;
         ALTER DATABASE FILENAME BBV_DB
                RECOVERY JOURNAL (LOCATION IS 'RUJDEV:');
         ALTER DATABASE FILENAME BBV_DB
                RESERVE 5 JOURNALS;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_1 FILENAME AIJDEV:JOURN_1.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN1.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_2 FILENAME AIJDEV:JOURN_2.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN2.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_3 FILENAME AIJDEV:JOURN_3.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN3.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_4 FILENAME AIJDEV:JOURN_4.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN4.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_5 FILENAME AIJDEV:JOURN_5.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN5.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_6 FILENAME AIJDEV:JOURN_6.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN6.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_7 FILENAME AIJDEV:JOURN_7.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN7.BCK;
         ALTER DATABASE FILENAME BBV_DB
                ADD JOURNAL JOURN_8 FILENAME AIJDEV:JOURN_8.AIJ
                ALLOCATION 65535 BLOCKS
                BACKUP FILENAME AIJDEV:JOURN8.BCK;
         ALTER DATABASE FILENAME BBV_DB
                JOURNAL IS ENABLED (FAST COMMIT IS ENABLED,
                BACKUP SERVER IS AUTOMATIC,LOG SERVER IS AUTOMATIC);
    
     
5045.4AVMSV1::EKREISLEErich KreislerWed Feb 19 1997 09:108
I did not see the checkpint definitions in the .3, at switch over you will do a
checkpoint also, that can cost some time. A way to avoid this is to make sure
that only a 'small' number of dirty pages are in the global or local buffer when
the checkpoint happens. That means you play with ABW* logicals and something
like CLEAN_BUFFER_COUNT (check the docs please).

Ciao,
	erich
5045.5NOVA::R_ANDERSONOracle Corporation (603) 881-1935Wed Feb 19 1997 11:0512
You can also define the RDM$BIND_AIJ_SWITCH_GLOBAL_CKPT logical to "0" (the
default is "1").  This has the effect of not forcing a global checkpoint when an
AIJ switch-over occurs.

This can also be done through the RMU/SHOW STATISTIC "Dashboard Facility" IF you
have the proper privs.  This is a wonderful tool for "trying" changes without
having to define logicals or having to change the database persistently.

(I highly recommend reviewing the release notes and manuals on the proper usage
of the "Dashboard").

Rick
5045.6Locks from already comitted transaction?4107::PLINDGREA customer called...Thu Feb 27 1997 12:2573
    	Hi,
    
    The problem remains. 
    
    This has been done:
    
    RDM$BIND_AIJ_SWITCH_GLOBAL_CKPT logical to "0"
    RDM$BIND_APF_ENABLED   "0" 
    RDM$BIND_DAPF_ENABLED  "0"
    RDM$BIND_ABW_ENABLED   "0"
    
    Turned off fast commit
    
    Turned off prestarted transactions 
    
    none of these acions helped.
    
    The lock that I referred in .3 in the RDB$SYSTEM area was a user
    defined table that by mistake put in RDB$SYSTEM. This table is now
    placed in it's own storage area. By doing this we found out that
    this table was getting a lot of I/O and it turned out that it only
    held ONE ROW. This row was heavily read but  seldome updated.
    
    This 1 row table without index  gives 90 I/O at write time and 20 I/O at
    read time. 
    
    If adding index on table the I/O decrease to 1 I/O per index/data area  
    both at read and write time.
    
    The customer has looked over his database and adding indexes to all his
    1 row tables. He has also changed his programs to use the key index.
    
    This has made the hung problem to take a little longer time to occure.
    but the hung problem will only occure when AIJ is enabled, if it's
    turned off we do not have any problems.
    
    We think we are facing two problems here:
    
    1. the strange 1 row I/O problem
    
    2. a locking problem
    
    We also think that these problems are NOT connected we just happend to
    see them during this our work to find an explanation the the stalls.
    
    
    Locking problem:
    
    It seems like there are locks that already are commited but they are
    still there blocking others processes.
    
    These locks are resolved when THE SAME process starts a NEW transaction
    
    In the next three replies I have put some information from a stall
    situation:
    
    1.  RMU/DUMP/HEAD
    
    2.  Some screen write from RMU/SHOW STATISTICS (dashboard screens etc.)
    
    3.  Process information from active processes
    
    Maybe this information could help us understand whats going in.
    
    
    All hints very welcome
    
    
    	Peter
    
    
    
    
5045.7RMU/DUMP/HEAD4107::PLINDGREA customer called...Thu Feb 27 1997 12:455260
    *------------------------------------------------------------------------------
    * Oracle Rdb V7.0-0                                     27-FEB-1997
    17:04:22.68
    *
    * Dump of Database header 
    *     Database: DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1
    *
    *------------------------------------------------------------------------------
    
    Database Parameters:
        Root filename is "DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1"
        Created at 24-FEB-1997 10:18:58.32
        Oracle Rdb structure level is 70.1
        Maximum user count is 50
        Maximum node count is 1
        Database open mode is AUTOMATIC
        Database close mode is AUTOMATIC
        Database will be mapped in process space
        All transaction modes are allowed
        Snapshot mode is NON-DEFERRED
        Statistics are enabled
        Lock timeout interval is 15 seconds
        Storage Areas...
          - Active storage area count is 104
          - Reserved storage area count is 150
        Row Caches...
          - Active row cache count is 0
          - Reserved row cache count is 156
          - Sweep interval is 1 second
          - Default cache file directory is database directory
        Buffers...
          - Default user buffer count is 20
          - Default recovery buffer count is 20
          - Global buffers are disabled
              Global buffer count is 250
              Maximum global buffer count per user is 5
          - Buffer size is 16 blocks
          - Asynchronous pre-fetch is enabled
              Maximum pre-fetch depth is 5 buffers
          - Detected asynchronous pre-fetch is enabled
              Maximum pre-fetch depth is 4 buffers
              Pre-fetch threshold is 4 pages
          - Asynchronous batch-write is enabled
              Clean buffer count is 5
              Maximum batch size is 4 buffers
          - Optimized page transfer is disabled
        Locking...
          - Adjustable record locking is enabled
              Fanout factor 1 is 10 (10 pages)
              Fanout factor 2 is 10 (100 pages)
              Fanout factor 3 is 10 (1000 pages)
          - Carry-over lock optimization is enabled
          - Lock tree partitioning is disabled
        RUJ Journaling...
          - Default recovery-unit journal directory is
    "DMXBBV$DKB100:[RUJDIR]"
        AIJ Journaling...
          - After-image journaling is enabled
          - Database is configured for 12 journals
          - Reserved journal count is 12
          - Available journal count is 8
          - Journal switches to next available when full
          - 1 journal has been modified with transaction data
          - 4 journals can be created while database is active
          - Journal "JOURN_3" is current
          - All journals are accessible
          - Shutdown time is 60 minutes
          - Backup operation is automatic via server
            - Backup uses no-quiet-point
          - Default backup filename edits are not used
          - Log server startup is AUTOMATIC
          - Operator notification is disabled
          - Journal overwrite is disabled
          - AIJ cache on "electronic disk" is disabled
          - Default journal allocation is 512 blocks
          - Default journal extension is 512 blocks
              Default extension ignored because multiple journals active
          - Default journal initialization is 512 blocks
          - Current roll-forward sequence number is 11
          - Current backup sequence number is 11
          - Database backup AIJ sequence number is 8
          - Last Journal backed up was "JOURN_2"
              Backup sequence number was 10
          - Next journal to be backed up is "JOURN_3"
              Backup sequence number is 11
          - AIJ Journal "JOURN_1"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_1.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_1.AIJ"
              Journal was last activated 26-FEB-1997 12:33:37.19
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN1.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 27-FEB-1997 04:42:36.77
                Last backup sequence number was 8
              Last Commit TSN is 0:423424
          - AIJ Journal "JOURN_2"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_2.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_2.AIJ"
              Journal was last activated 27-FEB-1997 04:42:36.11
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN2.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 27-FEB-1997 08:39:42.61
                Last backup sequence number was 10
              Last Commit TSN is 0:505867
          - AIJ Journal "JOURN_3"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_3.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_3.AIJ"
              Journal is current
              Journal was activated 27-FEB-1997 08:39:41.80
              Backup sequence number is 11
              Journal has been modified with transaction data
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              10434 blocks have been used (15% full)
              55104 blocks remain until before switch-over
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN3.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 25-FEB-1997 08:50:07.72
                Last backup sequence number was 2
              Last Commit TSN is 0:555182
          - AIJ Journal "JOURN_4"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_4.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_4.AIJ"
              Journal was last activated 25-FEB-1997 08:50:07.03
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN4.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 25-FEB-1997 17:35:55.88
                Last backup sequence number was 4
              Last Commit TSN is 0:166411
          - AIJ Journal "JOURN_5"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_5.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_5.AIJ"
              Journal was last activated 25-FEB-1997 13:17:13.14
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN5.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 25-FEB-1997 21:14:18.90
                Last backup sequence number was 5
              Last Commit TSN is 0:214304
          - AIJ Journal "JOURN_6"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_6.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_6.AIJ"
              Journal was last activated 25-FEB-1997 17:35:55.27
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN6.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 27-FEB-1997 00:18:15.65
                Last backup sequence number was 6
              Last Commit TSN is 0:259396
          - AIJ Journal "JOURN_7"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_7.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_7.AIJ"
              Journal was last activated 25-FEB-1997 21:14:18.12
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN7.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 27-FEB-1997 04:42:36.77
                Last backup sequence number was 7
              Last Commit TSN is 0:304103
          - AIJ Journal "JOURN_8"
              Filename is "DMXBBV$DKB500:[AIJDIR]JOURN_8.AIJ;2"
              Default AIJ filename is "AIJDEV:JOURN_8.AIJ"
              Journal was last activated 27-FEB-1997 00:18:14.86
              Journal is unmodified (contains no transaction data)
              Allocation is 65535 blocks
              Extension is defaulted to 512 blocks
                Default extension ignored because multiple journals active
              Initialization is defaulted to 65535 blocks
              Device cluster size is 9 blocks
              Current journal size is 65538 blocks
              1 block has been used (0% full)
              65537 blocks remain available
              Backup filename is "DMXBBV$DKB500:[AIJDIR]JOURN8.BCK;"
              Backup filename edits are not used
              Journal was last backed up on 27-FEB-1997 04:42:36.77
                Last backup sequence number was 9
              Last Commit TSN is 0:458382
        Fast Commit...
          - Fast commit is enabled
          - No checkpointing AIJ interval is specified
          - No checkpointing time interval is specified
          - Commit to AIJ optimization is disabled
          - Transaction interval is 256
        Hot Standby...
          - WARNING: Database has been modified while replication inactive
          - Informational: Operator notification is disabled
          - Database is not currently being replicated
        Security Auditing...
          - Security auditing is disabled
          - Security alarm is disabled
          - No audit journal filename is specified
          - No alarm name is specified
          - Synchronous audit record flushing is disabled
          - Audit every access
        Database Backup...
          - Fast incremental backup is enabled
          - Last full database backup was on 26-FEB-1997 12:55:02.96
          - Full database backup TSN is 0:423456
          - Database backup AIJ sequence number is 8
        Derived Data...
          - Global section size
              With global buffers disabled is 1088219 bytes
              With global buffers enabled is 3751937 bytes
        Database Recovery...
          - Database is consistent but has been modified
          - Full AIJ roll-forward is no longer permitted to this database
              By-Area and By-Page AIJ roll-forward is permitted
          - Full AIJ roll-forward to a newly restored database is permitted
          - Next AIJ sequence number expected is 11
          - Last commit transaction TSN is 0:562986
          - AIJ roll-forward is no-quiet-point enabled
        Sequence Numbers...
          - Transaction sequence number
            Next number is 0:563008
            Group size is 0:32
            Last updated 27-FEB-1997 14:56:18.83 by PID 00000278
          - Commit sequence number
            Next number is 0:212224
            Group size is 0:32
            Last updated 27-FEB-1997 15:03:25.62 by PID 00000278
          - Database bind sequence number
            Next number is 0:0
            Group size is 0:32
            Last updated 17-NOV-1858 00:00:00.00 by PID 00000000
    
    Storage area "RDB$SYSTEM"
        Area ID number is 1
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BBV_DB_DEFAULT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8192
          - Current physical page count is 8197
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 255
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 5
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ADP_MODEL_DATA"
        Area ID number is 2
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ADP_MODEL_DATA.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 256
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ADP_MODEL_DATA_IND"
        Area ID number is 3
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ADP_MODEL_DATA_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 257
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ALARM"
        Area ID number is 4
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ALARM.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 258
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ALARM_IND"
        Area ID number is 5
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ALARM_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 12
          - Current physical page count is 13
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 259
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT"
        Area ID number is 6
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 260
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT_IND"
        Area ID number is 7
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 261
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT_DEAD_BAND_EVENT"
        Area ID number is 8
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_DEAD_BAND_EVENT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 3
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 262
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT_DEAD_BAND_EVENT_IN"
        Area ID number is 9
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_DEAD_BAND_EVENT_IN.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 263
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT_LIMIT_EVENT"
        Area ID number is 10
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_LIMIT_EVENT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 3
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 264
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ANALOG_POINT_LIMIT_EVENT_IND"
        Area ID number is 11
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_LIMIT_EVENT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 265
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "BAR_CBX_TIME"
        Area ID number is 12
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BAR_CBX_TIME.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 266
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "BAR_CBX_TIME_IND"
        Area ID number is 13
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BAR_CBX_TIME_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 267
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "BROLL_CALIBRATION"
        Area ID number is 14
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BROLL_CALIBRATION.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 200
          - Current physical page count is 201
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 268
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "BROLL_CALIBRATION_IND"
        Area ID number is 15
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>BROLL_CALIBRATION_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 20
          - Current physical page count is 21
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 269
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "DIGITAL_POINT"
        Area ID number is 16
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 270
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "DIGITAL_POINT_IND"
        Area ID number is 17
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 271
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "DIGITAL_POINT_EVENT"
        Area ID number is 18
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_EVENT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 4
          - Current physical page count is 4396
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 17 times
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 272
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 2
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "DIGITAL_POINT_EVENT_IND"
        Area ID number is 19
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_EVENT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 273
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "EVENT"
        Area ID number is 20
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>EVENT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 274
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "EVENT_IND"
        Area ID number is 21
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>EVENT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 12
          - Current physical page count is 13
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 275
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "FORM_FAMILY"
        Area ID number is 22
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FORM_FAMILY.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 24
          - Current physical page count is 25
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 276
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "FORM_FAMILY_IND"
        Area ID number is 23
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FORM_FAMILY_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 12
          - Current physical page count is 109
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 277
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "FURN_POSITION"
        Area ID number is 24
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FURN_POSITION.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 278
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "FURN_POSITION_IND"
        Area ID number is 25
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FURN_POSITION_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 279
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_GENERAL"
        Area ID number is 26
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_GENERAL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 212
          - Current physical page count is 213
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 280
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_GENERAL_IND"
        Area ID number is 27
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_GENERAL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 80
          - Current physical page count is 81
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 281
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_INTERSTAND"
        Area ID number is 28
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_INTERSTAND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 640
          - Current physical page count is 641
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 282
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_INTERSTAND_IND"
        Area ID number is 29
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_INTERSTAND_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 120
          - Current physical page count is 505
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 4 times
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 283
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_STAND"
        Area ID number is 30
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_STAND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 814
          - Current physical page count is 815
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 284
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "GRT_STAND_IND"
        Area ID number is 31
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_STAND_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 200
          - Current physical page count is 393
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 2 times
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 285
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "INTERSTAND_CONST"
        Area ID number is 32
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 286
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "INTERSTAND_CONST_IND"
        Area ID number is 33
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 287
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "INTERSTAND_GENERAL"
        Area ID number is 34
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_GENERAL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 288
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "INTERSTAND_GENERAL_IND"
        Area ID number is 35
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_GENERAL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 289
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MAIL_EVENT"
        Area ID number is 36
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MAIL_EVENT.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 290
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MAIL_EVENT_IND"
        Area ID number is 37
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MAIL_EVENT_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 291
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MILL_CONST"
        Area ID number is 38
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 292
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MILL_CONST_IND"
        Area ID number is 39
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 293
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MILL_GENERAL"
        Area ID number is 40
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_GENERAL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 294
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "MILL_GENERAL_IND"
        Area ID number is 41
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_GENERAL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 295
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_ADP_LONG"
        Area ID number is 42
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_ADP_LONG.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 296
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_ADP_LONG_IND"
        Area ID number is 43
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_ADP_LONG_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 297
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_CONST"
        Area ID number is 44
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 6 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 298
        Space Management...
          - SPAMS are enabled
          - Interval is 2436 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_CONST_IND"
        Area ID number is 45
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 6 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 299
        Space Management...
          - SPAMS are enabled
          - Interval is 2436 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_CURVE_CONST"
        Area ID number is 46
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CURVE_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 300
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_CURVE_CONST_IND"
        Area ID number is 47
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CURVE_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 301
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_FLATNESS_LIM"
        Area ID number is 48
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_FLATNESS_LIM.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 302
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_FLATNESS_LIM_IND"
        Area ID number is 49
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_FLATNESS_LIM_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 303
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_MATERIAL_CORR"
        Area ID number is 50
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_MATERIAL_CORR.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 11
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 304
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_MATERIAL_CORR_IND"
        Area ID number is 51
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_MATERIAL_CORR_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 305
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_STAND_CONST"
        Area ID number is 52
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 306
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_STAND_CONST_IND"
        Area ID number is 53
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 307
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_STAND_CURVE_CONST"
        Area ID number is 54
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CURVE_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 308
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "PCFC_STAND_CURVE_CONST_IND"
        Area ID number is 55
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CURVE_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 309
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ROLL_WEAR"
        Area ID number is 56
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ROLL_WEAR.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 11
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 310
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ROLL_WEAR_IND"
        Area ID number is 57
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ROLL_WEAR_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 311
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "SECTOR"
        Area ID number is 58
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>SECTOR.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 312
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "SECTOR_IND"
        Area ID number is 59
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>SECTOR_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 313
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STAND_CONST"
        Area ID number is 60
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 314
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STAND_CONST_IND"
        Area ID number is 61
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 315
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STAND_GENERAL"
        Area ID number is 62
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_GENERAL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 316
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STAND_GENERAL_IND"
        Area ID number is 63
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_GENERAL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 317
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STEELGRADE"
        Area ID number is 64
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STEELGRADE.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 4
          - Current physical page count is 103
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 318
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STEELGRADE_IND"
        Area ID number is 65
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STEELGRADE_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 319
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP"
        Area ID number is 66
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is mixed
          - Page size is 8 blocks
          - Initial data page count was 20000
          - Current physical page count is 20093
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 320
        Space Management...
          - SPAMS are enabled
          - Interval is 216 data pages
          - Thresholds are 70%, 85%, and 95%
          - Current SPAM page count is 93
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_ADP_MODEL_STATUS"
        Area ID number is 67
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_ADP_MODEL_STATUS.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 3334
          - Current physical page count is 3336
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 321
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 2
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_ADP_MODEL_STATUS_IND"
        Area ID number is 68
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_ADP_MODEL_STATUS_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 1500
          - Current physical page count is 1501
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 322
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_INTERSTAND"
        Area ID number is 69
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_INTERSTAND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 17502
          - Current physical page count is 17508
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 323
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 6
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_INTERSTAND_IND"
        Area ID number is 70
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_INTERSTAND_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 8000
          - Current physical page count is 8003
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 324
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 3
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_STAND"
        Area ID number is 71
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_STAND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 24001
          - Current physical page count is 24008
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 325
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 7
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_STAND_IND"
        Area ID number is 72
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_STAND_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 10000
          - Current physical page count is 10004
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 326
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 4
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_ZONE"
        Area ID number is 73
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_ZONE.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 1244
          - Current physical page count is 1245
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 327
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_IN_ZONE_IND"
        Area ID number is 74
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_ZONE_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 400
          - Current physical page count is 401
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 328
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_LOG"
        Area ID number is 75
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_LOG.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2858
          - Current physical page count is 2859
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 329
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_LOG_IND"
        Area ID number is 76
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_LOG_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 1000
          - Current physical page count is 1001
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 330
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PART"
        Area ID number is 77
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PART.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 331
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PART_IND"
        Area ID number is 78
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PART_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 332
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PRED_EXPANSION"
        Area ID number is 79
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_EXPANSION.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 8065
          - Current physical page count is 8068
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 333
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 3
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PRED_EXPANSION_IND"
        Area ID number is 80
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_EXPANSION_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 4000
          - Current physical page count is 4002
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 334
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 2
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PRED_PROFILE"
        Area ID number is 81
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_PROFILE.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 8621
          - Current physical page count is 8624
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 335
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 3
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "STRIP_PRED_PROFILE_IND"
        Area ID number is 82
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_PROFILE_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 16 blocks
          - Initial data page count was 4000
          - Current physical page count is 4002
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 336
        Space Management...
          - SPAMS are enabled
          - Interval is 3629 data pages
          - Current SPAM page count is 2
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "THICK_GRP_FMILL"
        Area ID number is 83
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>THICK_GRP_FMILL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 337
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "THICK_GRP_FMILL_IND"
        Area ID number is 84
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>THICK_GRP_FMILL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 338
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TRD_CONST"
        Area ID number is 85
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TRD_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 339
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TRD_CONST_IND"
        Area ID number is 86
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TRD_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 340
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_CONST"
        Area ID number is 87
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 3 blocks
          - Initial data page count was 5
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 95 pages, maximum of 9995 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 341
        Space Management...
          - SPAMS are enabled
          - Interval is 2320 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_CONST_IND"
        Area ID number is 88
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 342
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_STAND_CONST"
        Area ID number is 89
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_STAND_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 343
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_STAND_CONST_IND"
        Area ID number is 90
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>TWC_STAND_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 344
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_CONST"
        Area ID number is 91
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 345
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_CONST_IND"
        Area ID number is 92
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 346
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_ROLL"
        Area ID number is 93
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_ROLL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 347
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_ROLL_IND"
        Area ID number is 94
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_ROLL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 348
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_STAND_CONST"
        Area ID number is 95
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_STAND_CONST.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 2
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 349
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWH_STAND_CONST_IND"
        Area ID number is 96
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>TWH_STAND_CONST_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 350
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "WIDTH_GRP_FMILL"
        Area ID number is 97
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>WIDTH_GRP_FMILL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 351
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "WIDTH_GRP_FMILL_IND"
        Area ID number is 98
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>WIDTH_GRP_FMILL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 352
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ZON"
        Area ID number is 99
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ZON.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 2 blocks
          - Initial data page count was 8
          - Current physical page count is 105
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 353
        Space Management...
          - SPAMS are enabled
          - Interval is 1992 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "ZON_IND"
        Area ID number is 100
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ZON_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 1 block
          - Initial data page count was 16
          - Current physical page count is 113
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 354
        Space Management...
          - SPAMS are enabled
          - Interval is 1296 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_ROLL"
        Area ID number is 101
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 4
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 355
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_ROLL_IND"
        Area ID number is 102
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 356
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_ROLL_WEAR"
        Area ID number is 103
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_WEAR.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 11
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 357
        Space Management...
          - SPAMS are enabled
          - Interval is 3256 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Storage area "TWC_ROLL_WEAR_IND"
        Area ID number is 104
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_WEAR_IND.RDA;1"
        Access mode is READ/WRITE
        Pages...
          - Page format is uniform
          - Page size is 4 blocks
          - Initial data page count was 4
          - Current physical page count is 101
          - Page checksums are enabled
          - Row level locking is enabled
        Row Caching...
          - Row caching is disabled
          - No row cache is defined for this area
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
        Snapshots...
          - Snapshots are enabled
          - Snapshot area ID number is 358
        Space Management...
          - SPAMS are enabled
          - Interval is 2696 data pages
          - Current SPAM page count is 1
        Status...
          - Area last backed up at 26-FEB-1997 12:55:02.96
          - Area full backup TSN is 0:423456
          - Area has never been incrementally restored
    
    Snapshot area for storage area "RDB$SYSTEM"
        Area ID number is 255
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BBV_DB_DEFAULT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 100
          - Current physical page count is 2076
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 12 times
    
    Snapshot area for storage area "ADP_MODEL_DATA"
        Area ID number is 256
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ADP_MODEL_DATA.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ADP_MODEL_DATA_IND"
        Area ID number is 257
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ADP_MODEL_DATA_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ALARM"
        Area ID number is 258
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ALARM.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ALARM_IND"
        Area ID number is 259
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ALARM_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT"
        Area ID number is 260
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT_IND"
        Area ID number is 261
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT_DEAD_BAND_EVENT"
        Area ID number is 262
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_DEAD_BAND_EVENT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT_DEAD_BAND_EVENT_IN"
        Area ID number is 263
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_DEAD_BAND_EVENT_IN.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT_LIMIT_EVENT"
        Area ID number is 264
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_LIMIT_EVENT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ANALOG_POINT_LIMIT_EVENT_IND"
        Area ID number is 265
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>ANALOG_POINT_LIMIT_EVENT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "BAR_CBX_TIME"
        Area ID number is 266
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BAR_CBX_TIME.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "BAR_CBX_TIME_IND"
        Area ID number is 267
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BAR_CBX_TIME_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "BROLL_CALIBRATION"
        Area ID number is 268
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>BROLL_CALIBRATION.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "BROLL_CALIBRATION_IND"
        Area ID number is 269
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>BROLL_CALIBRATION_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "DIGITAL_POINT"
        Area ID number is 270
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 111
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
    
    Snapshot area for storage area "DIGITAL_POINT_IND"
        Area ID number is 271
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "DIGITAL_POINT_EVENT"
        Area ID number is 272
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_EVENT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 407
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 4 times
    
    Snapshot area for storage area "DIGITAL_POINT_EVENT_IND"
        Area ID number is 273
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>DIGITAL_POINT_EVENT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 202
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 2 times
    
    Snapshot area for storage area "EVENT"
        Area ID number is 274
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>EVENT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "EVENT_IND"
        Area ID number is 275
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>EVENT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "FORM_FAMILY"
        Area ID number is 276
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FORM_FAMILY.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 20
          - Current physical page count is 20
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "FORM_FAMILY_IND"
        Area ID number is 277
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FORM_FAMILY_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "FURN_POSITION"
        Area ID number is 278
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FURN_POSITION.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "FURN_POSITION_IND"
        Area ID number is 279
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>FURN_POSITION_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "GRT_GENERAL"
        Area ID number is 280
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_GENERAL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 25
          - Current physical page count is 221
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 2 times
    
    Snapshot area for storage area "GRT_GENERAL_IND"
        Area ID number is 281
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_GENERAL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 15
          - Current physical page count is 111
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
    
    Snapshot area for storage area "GRT_INTERSTAND"
        Area ID number is 282
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_INTERSTAND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 50
          - Current physical page count is 648
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 6 times
    
    Snapshot area for storage area "GRT_INTERSTAND_IND"
        Area ID number is 283
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_INTERSTAND_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 20
          - Current physical page count is 600
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 6 times
    
    Snapshot area for storage area "GRT_STAND"
        Area ID number is 284
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_STAND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 50
          - Current physical page count is 648
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 6 times
    
    Snapshot area for storage area "GRT_STAND_IND"
        Area ID number is 285
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>GRT_STAND_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 30
          - Current physical page count is 414
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has been extended 4 times
    
    Snapshot area for storage area "INTERSTAND_CONST"
        Area ID number is 286
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "INTERSTAND_CONST_IND"
        Area ID number is 287
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "INTERSTAND_GENERAL"
        Area ID number is 288
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_GENERAL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "INTERSTAND_GENERAL_IND"
        Area ID number is 289
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>INTERSTAND_GENERAL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "MAIL_EVENT"
        Area ID number is 290
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MAIL_EVENT.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "MAIL_EVENT_IND"
        Area ID number is 291
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MAIL_EVENT_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "MILL_CONST"
        Area ID number is 292
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "MILL_CONST_IND"
        Area ID number is 293
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "MILL_GENERAL"
        Area ID number is 294
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_GENERAL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 106
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
    
    Snapshot area for storage area "MILL_GENERAL_IND"
        Area ID number is 295
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>MILL_GENERAL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_ADP_LONG"
        Area ID number is 296
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_ADP_LONG.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_ADP_LONG_IND"
        Area ID number is 297
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_ADP_LONG_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_CONST"
        Area ID number is 298
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 6 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_CONST_IND"
        Area ID number is 299
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 6 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_CURVE_CONST"
        Area ID number is 300
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CURVE_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_CURVE_CONST_IND"
        Area ID number is 301
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_CURVE_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_FLATNESS_LIM"
        Area ID number is 302
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_FLATNESS_LIM.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_FLATNESS_LIM_IND"
        Area ID number is 303
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_FLATNESS_LIM_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_MATERIAL_CORR"
        Area ID number is 304
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_MATERIAL_CORR.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_MATERIAL_CORR_IND"
        Area ID number is 305
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_MATERIAL_CORR_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_STAND_CONST"
        Area ID number is 306
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_STAND_CONST_IND"
        Area ID number is 307
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_STAND_CURVE_CONST"
        Area ID number is 308
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CURVE_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "PCFC_STAND_CURVE_CONST_IND"
        Area ID number is 309
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>PCFC_STAND_CURVE_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ROLL_WEAR"
        Area ID number is 310
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ROLL_WEAR.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 15
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ROLL_WEAR_IND"
        Area ID number is 311
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ROLL_WEAR_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "SECTOR"
        Area ID number is 312
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>SECTOR.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "SECTOR_IND"
        Area ID number is 313
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>SECTOR_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STAND_CONST"
        Area ID number is 314
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STAND_CONST_IND"
        Area ID number is 315
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STAND_GENERAL"
        Area ID number is 316
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_GENERAL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 206
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 2 times
    
    Snapshot area for storage area "STAND_GENERAL_IND"
        Area ID number is 317
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STAND_GENERAL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STEELGRADE"
        Area ID number is 318
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STEELGRADE.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STEELGRADE_IND"
        Area ID number is 319
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STEELGRADE_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP"
        Area ID number is 320
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 100
          - Current physical page count is 296
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 2 times
    
    Snapshot area for storage area "STRIP_ADP_MODEL_STATUS"
        Area ID number is 321
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_ADP_MODEL_STATUS.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 100
          - Current physical page count is 100
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_ADP_MODEL_STATUS_IND"
        Area ID number is 322
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_ADP_MODEL_STATUS_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 50
          - Current physical page count is 50
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_INTERSTAND"
        Area ID number is 323
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_INTERSTAND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 100
          - Current physical page count is 100
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_INTERSTAND_IND"
        Area ID number is 324
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_INTERSTAND_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 100
          - Current physical page count is 100
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_STAND"
        Area ID number is 325
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_STAND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 200
          - Current physical page count is 200
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_STAND_IND"
        Area ID number is 326
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_STAND_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 150
          - Current physical page count is 150
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_ZONE"
        Area ID number is 327
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_ZONE.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 20
          - Current physical page count is 20
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_IN_ZONE_IND"
        Area ID number is 328
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_IN_ZONE_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 20
          - Current physical page count is 118
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
    
    Snapshot area for storage area "STRIP_LOG"
        Area ID number is 329
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_LOG.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 25
          - Current physical page count is 25
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_LOG_IND"
        Area ID number is 330
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_LOG_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 20
          - Current physical page count is 20
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PART"
        Area ID number is 331
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PART.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PART_IND"
        Area ID number is 332
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PART_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PRED_EXPANSION"
        Area ID number is 333
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_EXPANSION.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 80
          - Current physical page count is 80
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PRED_EXPANSION_IND"
        Area ID number is 334
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_EXPANSION_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 50
          - Current physical page count is 50
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PRED_PROFILE"
        Area ID number is 335
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_PROFILE.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 80
          - Current physical page count is 80
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "STRIP_PRED_PROFILE_IND"
        Area ID number is 336
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>STRIP_PRED_PROFILE_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 16 blocks
          - Initial data page count was 50
          - Current physical page count is 50
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 99 pages, maximum of 9999 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "THICK_GRP_FMILL"
        Area ID number is 337
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>THICK_GRP_FMILL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "THICK_GRP_FMILL_IND"
        Area ID number is 338
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>THICK_GRP_FMILL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TRD_CONST"
        Area ID number is 339
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TRD_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TRD_CONST_IND"
        Area ID number is 340
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TRD_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_CONST"
        Area ID number is 341
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 3 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 95 pages, maximum of 9995 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_CONST_IND"
        Area ID number is 342
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_STAND_CONST"
        Area ID number is 343
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_STAND_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_STAND_CONST_IND"
        Area ID number is 344
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>TWC_STAND_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_CONST"
        Area ID number is 345
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_CONST_IND"
        Area ID number is 346
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_ROLL"
        Area ID number is 347
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_ROLL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_ROLL_IND"
        Area ID number is 348
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_ROLL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 8
          - Current physical page count is 8
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_STAND_CONST"
        Area ID number is 349
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWH_STAND_CONST.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWH_STAND_CONST_IND"
        Area ID number is 350
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>TWH_STAND_CONST_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 8
          - Current physical page count is 8
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "WIDTH_GRP_FMILL"
        Area ID number is 351
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>WIDTH_GRP_FMILL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "WIDTH_GRP_FMILL_IND"
        Area ID number is 352
        Filename is
    "DMXBBV$DKB300:<000000.BBV_DB>WIDTH_GRP_FMILL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ZON"
        Area ID number is 353
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ZON.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 2 blocks
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "ZON_IND"
        Area ID number is 354
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>ZON_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 1 block
          - Initial data page count was 5
          - Current physical page count is 5
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9984 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_ROLL"
        Area ID number is 355
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 10
          - Current physical page count is 108
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 1 time
    
    Snapshot area for storage area "TWC_ROLL_IND"
        Area ID number is 356
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 8
          - Current physical page count is 8
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Snapshot area for storage area "TWC_ROLL_WEAR"
        Area ID number is 357
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_WEAR.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 8 blocks
          - Initial data page count was 15
          - Current physical page count is 309
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 98 pages, maximum of 9998 pages
          - Volume set spreading is enabled
          - Area has been extended 3 times
    
    Snapshot area for storage area "TWC_ROLL_WEAR_IND"
        Area ID number is 358
        Filename is "DMXBBV$DKB300:<000000.BBV_DB>TWC_ROLL_WEAR_IND.SNP;1"
        Access mode is READ/WRITE
        Pages...
          - Page size is 4 blocks
          - Initial data page count was 10
          - Current physical page count is 10
          - Page checksums are enabled
          - Row level locking is enabled
        Extension...
          - Extends are enabled
          - Extend area by 20%, minimum of 96 pages, maximum of 9996 pages
          - Volume set spreading is enabled
          - Area has never been extended
    
    Active user with process ID 00000277 
        Stream ID is 1
        Monitor ID is 1
        Transaction ID is 278
        Snapshot transaction in progress
        Last Process quiet-point was AIJ sequence 11
        Transaction sequence number is 0:562987
    
    Active user with process ID 000002D9 (database server) 
        Stream ID is 1
        Monitor ID is 1
        Transaction ID is 734
        No transaction in progress
        Last Process quiet-point was AIJ sequence 11
    
    Active user with process ID 00000278 
        Stream ID is 1
        Monitor ID is 1
        Transaction ID is 1401
        Recovery journal filename is
    "DMXBBV$DKB100:<RUJDIR>BBV_DB$000108234346.RUJ;1"
        No transaction in progress
        Last AIJ checkpoint 11:10425
        Last Process quiet-point was AIJ sequence 11
    
    Dump of Corrupt Page Table:
    
    Corrupt page table is empty.
    
    
    Oracle Rdb specific root record
    
        Dbkey for Oracle Rdb bootstrap page is 8:842:0
        Latest full backup file is dated 26-FEB-1997 12:55:02.96
        Latest full backup transaction sequence number is 0:423456
        Database has never been incrementally restored
        Database has never been fully restored
        Database has never been verified
        Database has never been altered
    
5045.8RMU/SHOW STAT4177::LINDGRENA customer called...Thu Feb 27 1997 13:02841
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:02:57
Rate: 3.00 Seconds              Locking Analysis            Elapsed: 03:11:10.14
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Process 00000277:1 excessive stall on lock 22000DFA for waiting for page 79:9 (P
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:02:51
Rate: 3.00 Seconds               Area Analysis              Elapsed: 03:11:04.11
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
data FORM_FAMILY sync read I/O stalls 1.0 exceeded average 0.0
data FORM_FAMILY_IND sync read I/O stalls 1.0 exceeded average 0.0
data MILL_CONST sync read I/O stalls 1.1 exceeded average 0.0
data MILL_CONST_IND sync read I/O stalls 1.1 exceeded average 0.0
data MILL_GENERAL sync read I/O stalls 0.9 exceeded average 0.0
data MILL_GENERAL_IND sync read I/O stalls 0.7 exceeded average 0.0
data PCFC_ADP_LONG async write I/O stalls 1.5 exceeded average 0.6
data PCFC_ADP_LONG sync read I/O stalls 0.3 exceeded average 0.0
data PCFC_ADP_LONG_IND async write I/O stalls 1.0 exceeded average 0.6
data PCFC_ADP_LONG_IND sync read I/O stalls 0.6 exceeded average 0.0
data PCFC_ADP_LONG_IND sync write I/O stalls 6.0 exceeded average 1.3
data PCFC_CONST sync read I/O stalls 0.5 exceeded average 0.0
data PCFC_CONST_IND sync read I/O stalls 1.8 exceeded average 0.0
data PCFC_CURVE_CONST sync read I/O stalls 1.2 exceeded average 0.0
data PCFC_CURVE_CONST_IND sync read I/O stalls 2.0 exceeded average 0.0
data PCFC_FLATNESS_LIM sync read I/O stalls 0.3 exceeded average 0.0
data PCFC_FLATNESS_LIM_IND sync read I/O stalls 0.5 exceeded average 0.0
--------------------------------------------------------------------------------
Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:02:33
Rate: 3.00 Seconds                RUJ Analysis              Elapsed: 03:10:46.01
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
18.1% synchronous RUJ I/O above 10.0% threshold
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:02:24
Rate: 3.00 Seconds                AIJ Analysis              Elapsed: 03:10:36.99
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Log server is Automatic
AIJ JOURN_1 device DMXBBV$DKB300: same as storage area
AIJ JOURN_2 device DMXBBV$DKB300: same as storage area
AIJ JOURN_3 device DMXBBV$DKB300: same as storage area
AIJ JOURN_4 device DMXBBV$DKB300: same as storage area
AIJ JOURN_5 device DMXBBV$DKB300: same as storage area
AIJ JOURN_6 device DMXBBV$DKB300: same as storage area
AIJ JOURN_7 device DMXBBV$DKB300: same as storage area
AIJ JOURN_8 device DMXBBV$DKB300: same as storage area
0.0% background ARBs below 50.0% threshold
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:20
Rate: 3.00 Seconds               AIJ Dashboard              Elapsed: 03:09:33.12
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Min IO Blocks               0          0          0          0          0    0
Max IO Blocks             127        127        127        127        127    0
AIJ Stall Interval         50         50         50         50         50    0
Root Stall Intervl         50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
  
ARB Count                 300        300        300        300        300    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:17
Rate: 3.00 Seconds             Locking Dashboard            Elapsed: 03:09:30.39
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Lock Timeout Intvl         15         15         15         15         15    0
Ready AreaSerially          0          0          0          0          0    0
Snap Quiet Point            1          1          1          1          1    0
Hold Retrvl Locks           0          0          0          0          0    0
Coarse Buf Lockng           0          0          0          0          0    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:06
Rate: 3.00 Seconds                IO Dashboard              Elapsed: 03:09:18.65
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Buffer Count               20         20         20         20         20    0
  
APF Enabled                 1          1          1          1          1    0
APF Depth                   5          5          5          5          5    0
  
DAPF Enabled                1          1          1          1          1    0
DAPF Depth Count            4          4          4          4          4    0
DAPF Start Count            4          4          4          4          4    0
  
ABW Enabled                 1          1          1          1          1    0
ABW Clean BufCount          5          5          5          5          5    0
ABW Batch Max               4          4          4          4          4    0
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:05
Rate: 3.00 Seconds               RCS Dashboard              Elapsed: 03:09:18.08
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Ckpt Buffer Count          15         15         15         15         15    0
Batch Count              3000       3000       3000       3000       3000    0
Checkpoint                  1          1          1          1          1    0
Ckpt Time Interval          0          0          0          0          0    0
  
Sweep Interval              1          1          1          1          1    0
Low Cold Thshld             1          1          1          1          1    0
High Cold Thshld         1000       1000       1000       1000       1000    0
Cold Record Count           0          0          0          0          0    0
Abort Sweep                 0          0          0          0          0    0
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:03
Rate: 3.00 Seconds               DBR Dashboard              Elapsed: 03:09:16.07
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Buffer Count               20         20         20         20         20    0
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:02
Rate: 3.00 Seconds               ALS Dashboard              Elapsed: 03:09:15.08
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
AIJ Hiber Time             50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
Emergency AIJ               0          0          0          0          0    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:01:01
Rate: 3.00 Seconds               ABS Dashboard              Elapsed: 03:09:13.80
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Quiet Point                 0          0          0          0          0    0
Overwrite Allowed           0          0          0          0          0    0
OverwriteImmediate          0          0          0          0          0    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:59
Rate: 3.00 Seconds             Monitor Dashboard            Elapsed: 03:09:12.47
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Max DBR Count              50         50         50         50         50    0
ABS Priority               15         15         15         15         15    0
ALS Priority               15         15         15         15         15    0
DBR Priority               15         15         15         15         15    0
LCS Priority               15         15         15         15         15    0
LRS Priority               15         15         15         15         15    0
RCS Priority               15         15         15         15         15    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:58
Rate: 3.00 Seconds               RUJ Dashboard              Elapsed: 03:09:11.28
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
RUJ Alloc Blocks          127        127        127        127        127    0
RUJ Extend Blocks         127        127        127        127        127    0
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:57
Rate: 3.00 Seconds            Row Cache Dashboard           Elapsed: 03:09:09.93
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Insert Enabled              1          1          1          1          1    0
RCRL Count                  0          0          0          0          0    0
Latch Spin Count         1024       1024       1024       1024       1024    0
WS Unmark Threshld         10         10         10         10         10    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:56
Rate: 3.00 Seconds           Hot Standby Dashboard          Elapsed: 03:09:09.06
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Network Timeout           120        120        120        120        120    0
Connect Timeout             5          5          5          5          5    0
Data Sync Mode              0          0          0          0          0    0
  
Server Checkpoint         100        100        100        100        100    0
  
Gap Timeout                 5          5          5          5          5    0
Governor Enabled            1          1          1          1          1    0
Suspend ABS                 0          0          0          0          0    0
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:54
Rate: 3.00 Seconds            Checkpoint Dashboard          Elapsed: 03:09:07.46
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Ckpt Blocks                 0          0          0          0          0    0
Ckpt Time Interval          0          0          0          0          0    0
Ckpt Tx Interval   2147483647 2147483647 2147483647 2147483647 2147483647    0
  
CTJ Tx Interval           256        256        256        256        256    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:53
Rate: 3.00 Seconds               AIJ Dashboard              Elapsed: 03:09:06.08
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Min IO Blocks               0          0          0          0          0    0
Max IO Blocks             127        127        127        127        127    0
AIJ Stall Interval         50         50         50         50         50    0
Root Stall Intervl         50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
  
ARB Count                 300        300        300        300        300    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:51
Rate: 3.00 Seconds             Locking Dashboard            Elapsed: 03:09:04.35
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Lock Timeout Intvl         15         15         15         15         15    0
Ready AreaSerially          0          0          0          0          0    0
Snap Quiet Point            1          1          1          1          1    0
Hold Retrvl Locks           0          0          0          0          0    0
Coarse Buf Lockng           0          0          0          0          0    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:50
Rate: 3.00 Seconds                IO Dashboard              Elapsed: 03:09:03.05
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Buffer Count               20         20         20         20         20    0
  
APF Enabled                 1          1          1          1          1    0
APF Depth                   5          5          5          5          5    0
  
DAPF Enabled                1          1          1          1          1    0
DAPF Depth Count            4          4          4          4          4    0
DAPF Start Count            4          4          4          4          4    0
  
ABW Enabled                 1          1          1          1          1    0
ABW Clean BufCount          5          5          5          5          5    0
ABW Batch Max               4          4          4          4          4    0
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 17:00:18
Rate: 3.00 Seconds               AIJ Dashboard              Elapsed: 03:08:31.55
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Min IO Blocks               0          0          0          0          0    0
Max IO Blocks             127        127        127        127        127    0
AIJ Stall Interval         50         50         50         50         50    0
Root Stall Intervl         50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
  
ARB Count                 300        300        300        300        300    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:58:22
Rate: 3.00 Seconds            Locking (AIJ locks)           Elapsed: 03:06:35.22
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
locks requested                0        0        0.0            5           0.0
 rqsts not queued              0        0        0.0            0           0.0
 rqsts stalled                 0        0        0.0            0           0.0
 rqst timeouts                 0        0        0.0            0           0.0
 rqst deadlocks                0        0        0.0            0           0.0
locks promoted                 0        0        0.0            0           0.0
 proms not queued              0        0        0.0            0           0.0
 proms stalled                 0        0        0.0            0           0.0
 prom timeouts                 0        0        0.0            0           0.0
 prom deadlocks                0        0        0.0            0           0.0
locks demoted                  0        0        0.0            1           0.0
locks released                 0        0        0.0            3           0.0
blocking ASTs                  0        0        0.0            0           0.0
stall time x100                0        0        0.0            0           0.0
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:56:14
Rate: 3.00 Seconds         Active User Stall Messages       Elapsed: 03:04:26.81
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Since......   Stall.reason............................. Lock.ID.
00000277:1 16:10:47.51 - waiting for page 79:9 (PR)                22000DFA
000002D9:1s              writing AIJ sequence 11 block 10432
00000278:1               writing ROOT file (TSNBLK VBN 592)
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help LockID Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:55:10
Rate: 3.00 Seconds          AIJ Journal Information         Elapsed: 03:03:23.55
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Journaling: enabled   Shutdown:   60  Notify: disabled  State: Accessible
ALS: Running    ABS: enabled   ACE: disabled  FC: enabled   CTJ: disabled
  
After-Image.Journal.Name....... SeqNum AIJsize CurrEOF Status. State.......
JOURN_1                         Unused   65535   Empty Latent  Accessible
JOURN_2                         Unused   65535   Empty Latent  Accessible
JOURN_3                             11   65538   10434 Current Accessible
JOURN_4                         Unused   65535   Empty Latent  Accessible
JOURN_5                         Unused   65535   Empty Latent  Accessible
JOURN_6                         Unused   65535   Empty Latent  Accessible
JOURN_7                         Unused   65535   Empty Latent  Accessible
JOURN_8                         Unused   65535   Empty Latent  Accessible
Available AIJ slot 1
Available AIJ slot 2
Available AIJ slot 3
Available AIJ slot 4
  
  
--------------------------------------------------------------------------------
Bell Exit Help Menu >next_page <prev_page Refresh Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:55:08
Rate: 3.00 Seconds          Group Commit Statistics         Elapsed: 03:03:21.01
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
group commits                  2        2        0.2         2235           3.4
cache overflows                0        0        0.0            0           0.0
quick flushes                  0        0        0.0            0           0.0
  
ARB pool searches              0        0        0.0           17           0.0
    pre-allocation             0        0        0.0           13           0.0
    pool empty                 0        0        0.0            0           0.0
  
  
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:55:04
Rate: 3.00 Seconds               AIJ Statistics             Elapsed: 03:03:17.54
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
AIJ file writes                0        0        0.0           15           0.0
    data                       0        0        0.0           15           0.0
    control                    0        0        0.0            0           0.0
    file extend                0        0        0.0            0           0.0
    switch over                0        0        0.0            0           0.0
  
records written                0        0        0.0           79           0.1
blocks written                 0        0        0.0           33           0.0
    filler bytes               0        0        0.5         6464           9.8
  
lock rebuilds                  0        0        0.0            1           0.0
    AIJ file reads             0        0        0.0           12           0.0
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:55:01
Rate: 3.00 Seconds            Recovery Statistics           Elapsed: 03:03:14.53
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
process attaches               0        0        0.0           43           0.0
process failures               0        0        0.0            0           0.0
DB freeze len x100             0        0        0.0            0           0.0
Tx REDO count                  0        0        0.0            0           0.0
  redo time x100               0        0        0.0            0           0.0
Tx UNDO count                  0        0        0.0            0           0.0
  undo time x100               0        0        0.0            0           0.0
No UNDO needed                 0        0        0.0            0           0.0
Tx committed                   0        0        0.0            0           0.0
Tx rolled back                 0        0        0.0            0           0.0
No resolve needed              0        0        0.0            0           0.0
AIJ recover x100               0        0        0.0            0           0.0
GB recover x100                0        0        0.0            0           0.0
Cache recover x100             0        0        0.0            0           0.0
RUJ file reads                 0        0        0.0           11           0.0
AIJ file reads                 0        0        0.0           12           0.0
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:55
Rate: 3.00 Seconds           Checkpoint Statistics          Elapsed: 03:03:08.52
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
transactions                   0        0        0.0          654           1.0
checkpoints                    0        0        0.0            3           0.0
    AIJ growth                 0        0        0.0            0           0.0
    txn limit                  0        0        0.0            0           0.0
    time limit                 0        0        0.0            0           0.0
    rollback                   0        0        0.0            3           0.0
    AIJ backup                 0        0        0.0            0           0.0
    global                     0        0        0.0            0           0.0
interval: AIJ blks             0        0        0.0           23           0.0
interval: tx count             0        0        0.0           16           0.0
interval: seconds              0        0        0.3         4267           6.5
  
checkpoint stall               0        0        0.0           12           0.0
flushed buffers                0        0        0.0            0           0.0
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:43
Rate: 3.00 Seconds               RUJ Statistics             Elapsed: 03:02:56.49
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
RUJ file writes                0        0        0.0            2           0.0
    data                       0        0        0.0           10           0.0
    control                    0        0        0.0            1           0.0
    file extend                0        0        0.0            1           0.0
records written                0        0        0.0           69           0.1
RUJ file reads                 0        0        0.0           11           0.0
  
blocks written                 0        0        0.0            2           0.0
       read                    0        0        0.0           11           0.0
  
cache overflows                0        0        0.0            0           0.0
DBKEY cache hits               0        0        0.0           25           0.0
      overflows                0        0        0.0            0           0.0
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:41
Rate: 3.00 Seconds               2PC Statistics             Elapsed: 03:02:53.90
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
total tx count                 0        0        0.0          654           1.0
  2PC tx count                 0        0        0.0            0           0.0
  
total tx time x100            51        0       51.5       565608         864.8
  reg tx time x100            51        0       51.5       565608         864.8
  2PC tx time x100             0        0        0.0            0           0.0
  
prepared time x100             0        0        0.0            0           0.0
  
2PC tx resolved                0        0        0.0            0           0.0
   2PC committed               0        0        0.0            0           0.0
   2PC aborted                 0        0        0.0            0           0.0
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:39
Rate: 3.00 Seconds               ALS Statistics             Elapsed: 03:02:51.68
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
AIJ file writes                0        0        0.0           15           0.0
    data                       0        0        0.0           15           0.0
    control                    0        0        0.0            0           0.0
    file extend                0        0        0.0            0           0.0
    switch over                0        0        0.0            0           0.0
  
AIJ write time                 0        0        0.0            0           0.0
ALS hiber count                2        0        0.2         2198           3.3
AIJ hiber time                 0        0        0.0           14           0.0
AIJ extend time                0        0        0.0            0           0.0
group commits                  2        0        0.2         2214           3.3
  ARBs formatted               0        0        0.0           29           0.0
  ARBs background              0        0        0.0            0           0.0
premature IO saved             0        0        0.0            0           0.0
cache overflows                0        0        0.0            0           0.0
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:37
Rate: 3.00 Seconds          AIJ Journal Growth Trend        Elapsed: 03:02:50.48
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
                                    JOURN_3
  
         AIJ size:    65538   Current Eof:    10434     Percent full:  15.9
  
         +---------+---------+---------+---------+---------+---------+---------+
 91-100% |         |         |         |         |         |         |         |
 81-90%  |         |         |         |         |         |         |         |
 71-80%  |         |         |         |         |         |         |         |
 61-70%  |         |         |         |         |         |         |         |
 51-60%  |         |         |         |         |         |         |         |
 41-50%  |         |         |         |         |         |         |         |
 31-40%  |         |         |         |         |         |         |         |
 21-30%  |         |         |         |         |         |         |         |
 11-20%  |55       |         |         |         |         |         |         |
  1-10%  |         |         |         |         |         |         |         |
         +---------+---------+---------+---------+---------+---------+---------+
  
                        Sample interval is 3.00 Seconds
--------------------------------------------------------------------------------
Exit Help Menu Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:35
Rate: 3.00 Seconds          AIJ Journal Information         Elapsed: 03:02:48.16
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Journaling: enabled   Shutdown:   60  Notify: disabled  State: Accessible
ALS: Running    ABS: enabled   ACE: disabled  FC: enabled   CTJ: disabled
  
After-Image.Journal.Name....... SeqNum AIJsize CurrEOF Status. State.......
JOURN_1                         Unused   65535   Empty Latent  Accessible
JOURN_2                         Unused   65535   Empty Latent  Accessible
JOURN_3                             11   65538   10434 Current Accessible
JOURN_4                         Unused   65535   Empty Latent  Accessible
JOURN_5                         Unused   65535   Empty Latent  Accessible
JOURN_6                         Unused   65535   Empty Latent  Accessible
JOURN_7                         Unused   65535   Empty Latent  Accessible
JOURN_8                         Unused   65535   Empty Latent  Accessible
Available AIJ slot 1
Available AIJ slot 2
Available AIJ slot 3
Available AIJ slot 4
  
  
--------------------------------------------------------------------------------
Bell Exit Help Menu >next_page <prev_page Refresh Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:33
Rate: 3.00 Seconds          Group Commit Statistics         Elapsed: 03:02:46.44
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
group commits                  0        0        0.2         2228           3.4
cache overflows                0        0        0.0            0           0.0
quick flushes                  0        0        0.0            0           0.0
  
ARB pool searches              0        0        0.0           17           0.0
    pre-allocation             0        0        0.0           13           0.0
    pool empty                 0        0        0.0            0           0.0
  
  
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:31
Rate: 3.00 Seconds               AIJ Statistics             Elapsed: 03:02:44.46
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
AIJ file writes                0        0        0.0           15           0.0
    data                       0        0        0.0           15           0.0
    control                    0        0        0.0            0           0.0
    file extend                0        0        0.0            0           0.0
    switch over                0        0        0.0            0           0.0
  
records written                0        0        0.0           79           0.1
blocks written                 0        0        0.0           33           0.0
    filler bytes               0        0        0.5         6464           9.8
  
lock rebuilds                  0        0        0.0            1           0.0
    AIJ file reads             0        0        0.0           12           0.0
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor  27-FEB-1997 16:54:05
Rate: 3.00 Seconds               Stall Messages             Elapsed: 03:02:18.37
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Since......   Stall.reason............................. Lock.ID.
00000277:1 16:10:47.51 - waiting for page 79:9 (PR)                22000DFA
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Alarm Bell Config Exit Filter Help LockID Menu >next_page <prev_page Set_rate Wr

5045.9Active process info4177::LINDGRENA customer called...Thu Feb 27 1997 13:15251
27-FEB-1997 17:10:24.59   User: PERU             Process ID:   00000277
                          Node: DMXBBV           Process name: "_TNA6:"

Terminal:           TNA6:  (Host: 172.16.34.28     Port: 4074 )
User Identifier:    [BBV_GRP,PERU]
Base priority:      4
Default file spec:  Not available
Number of Kthreads: 1

Devices allocated:  DMXBBV$TNA6:

Process Quotas:
 Account name: BBV_GRP 
 CPU limit:                      Infinite  Direct I/O limit:       150
 Buffered I/O byte count quota:     95264  Buffered I/O limit:     150
 Timer queue entry quota:              10  Open file quota:         75
 Paging file quota:                137200  Subprocess quota:        10
 Default page fault cluster:           64  AST quota:              248
 Enqueue quota:                      1840  Shared file limit:        0
 Max detached processes:                0  Max active jobs:          0

Accounting information:
 Buffered I/O count:     56667  Peak working set size:      17792
 Direct I/O count:       26958  Peak virtual size:         211840
 Page faults:            67005  Mounted volumes:                0
 Images activated:         137
 Elapsed CPU time:          0 00:00:51.62
 Connect time:              0 06:20:00.75
 
Authorized privileges:
 ACNT         ALLSPOOL     ALTPRI       AUDIT        BUGCHK       CMEXEC
 CMKRNL       DIAGNOSE     EXQUOTA      GROUP        GRPNAM       GRPPRV
 IMPERSONATE  LOG_IO       MOUNT        NETMBX       OPER         PFNMAP
 PHY_IO       PRMGBL       PSWAPM       SHMEM        SYSNAM       TMPMBX
 VOLPRO       WORLD
 
Process privileges:
 ACNT                 may suppress accounting messages
 ALLSPOOL             may allocate spooled device
 ALTPRI               may set any priority value
 AUDIT                may direct audit to system security audit log
 BUGCHK               may make bug check log entries
 CMEXEC               may change mode to exec
 CMKRNL               may change mode to kernel
 DIAGNOSE             may diagnose devices
 EXQUOTA              may exceed disk quota
 GROUP                may affect other processes in same group
 GRPNAM               may insert in group logical name table
 GRPPRV               may access group objects via system protection
 IMPERSONATE          may impersonate another user
 LOG_IO               may do logical i/o
 MOUNT                may execute mount acp function
 NETMBX               may create network device
 OPER                 may perform operator functions
 PFNMAP               may map to specific physical pages
 PHY_IO               may do physical i/o
 PRMGBL               may create permanent global sections
 PSWAPM               may change process swap mode
 SHMEM                may create/delete objects in shared memory
 SYSNAM               may insert in system logical name table
 TMPMBX               may create temporary mailbox
 VOLPRO               may override volume protection
 WORLD                may affect other processes in the world
 
Process rights:
 INTERACTIVE                       
 REMOTE                            
 
System rights:
 SYS$NODE_DMXBBV                   
 
Auto-unshelve: on
 
Image Dump: off

There is 1 process in this job: 

  _TNA6: (*)

27-FEB-1997 17:10:26.49   User: PERU             Process ID:   00000278
                          Node: DMXBBV           Process name: "_TNA7:"

Terminal:           TNA7:  (Host: 172.16.34.28     Port: 4075 )
User Identifier:    [BBV_GRP,PERU]
Base priority:      4
Default file spec:  Not available
Number of Kthreads: 1

Devices allocated:  DMXBBV$TNA7:

Process Quotas:
 Account name: BBV_GRP 
 CPU limit:                      Infinite  Direct I/O limit:       150
 Buffered I/O byte count quota:     90144  Buffered I/O limit:     150
 Timer queue entry quota:              10  Open file quota:         51
 Paging file quota:                127008  Subprocess quota:        10
 Default page fault cluster:           64  AST quota:              247
 Enqueue quota:                      1760  Shared file limit:        0
 Max detached processes:                0  Max active jobs:          0

Accounting information:
 Buffered I/O count:      7251  Peak working set size:      23520
 Direct I/O count:        3411  Peak virtual size:         219744
 Page faults:             5221  Mounted volumes:                0
 Images activated:          12
 Elapsed CPU time:          0 00:00:05.16
 Connect time:              0 06:19:52.37
 
Authorized privileges:
 ACNT         ALLSPOOL     ALTPRI       AUDIT        BUGCHK       CMEXEC
 CMKRNL       DIAGNOSE     EXQUOTA      GROUP        GRPNAM       GRPPRV
 IMPERSONATE  LOG_IO       MOUNT        NETMBX       OPER         PFNMAP
 PHY_IO       PRMGBL       PSWAPM       SHMEM        SYSNAM       TMPMBX
 VOLPRO       WORLD
 
Process privileges:
 ACNT                 may suppress accounting messages
 ALLSPOOL             may allocate spooled device
 ALTPRI               may set any priority value
 AUDIT                may direct audit to system security audit log
 BUGCHK               may make bug check log entries
 CMEXEC               may change mode to exec
 CMKRNL               may change mode to kernel
 DIAGNOSE             may diagnose devices
 EXQUOTA              may exceed disk quota
 GROUP                may affect other processes in same group
 GRPNAM               may insert in group logical name table
 GRPPRV               may access group objects via system protection
 IMPERSONATE          may impersonate another user
 LOG_IO               may do logical i/o
 MOUNT                may execute mount acp function
 NETMBX               may create network device
 OPER                 may perform operator functions
 PFNMAP               may map to specific physical pages
 PHY_IO               may do physical i/o
 PRMGBL               may create permanent global sections
 PSWAPM               may change process swap mode
 SHMEM                may create/delete objects in shared memory
 SYSNAM               may insert in system logical name table
 TMPMBX               may create temporary mailbox
 VOLPRO               may override volume protection
 WORLD                may affect other processes in the world
 
Process rights:
 INTERACTIVE                       
 REMOTE                            
 
System rights:
 SYS$NODE_DMXBBV                   
 
Auto-unshelve: on
 
Image Dump: off

There is 1 process in this job: 

  _TNA7: (*)

27-FEB-1997 17:10:29.03   User: SYSTEM           Process ID:   000002D9
                          Node: DMXBBV           Process name: "RDM_ALS_1"

Terminal:           
User Identifier:    [SYSTEM]
Base priority:      15
Default file spec:  Not available
Number of Kthreads: 1

Process Quotas:
 Account name: SYSTEM  
 CPU limit:                      Infinite  Direct I/O limit:      1000
 Buffered I/O byte count quota:  99999295  Buffered I/O limit:    1000
 Timer queue entry quota:              99  Open file quota:       8189
 Paging file quota:              99996352  Subprocess quota:       100
 Default page fault cluster:           64  AST quota:               99
 Enqueue quota:                     32753  Shared file limit:        0
 Max detached processes:                0  Max active jobs:          0

Accounting information:
 Buffered I/O count:        14  Peak working set size:       2160
 Direct I/O count:          32  Peak virtual size:         175136
 Page faults:              195  Mounted volumes:                0
 Images activated:           0
 Elapsed CPU time:          0 00:00:00.02
 Connect time:              0 03:18:41.48
 
Authorized privileges:
 ACNT         ALLSPOOL     ALTPRI       AUDIT        BUGCHK       BYPASS
 CMEXEC       CMKRNL       DIAGNOSE     DOWNGRADE    EXQUOTA      GROUP
 GRPNAM       GRPPRV       IMPERSONATE  IMPORT       LOG_IO       MOUNT
 NETMBX       OPER         PFNMAP       PHY_IO       PRMCEB       PRMGBL
 PRMMBX       PSWAPM       READALL      SECURITY     SETPRV       SHARE
 SHMEM        SYSGBL       SYSLCK       SYSNAM       SYSPRV       TMPMBX
 UPGRADE      VOLPRO       WORLD
 
Process privileges:
 ACNT                 may suppress accounting messages
 ALLSPOOL             may allocate spooled device
 ALTPRI               may set any priority value
 AUDIT                may direct audit to system security audit log
 BUGCHK               may make bug check log entries
 BYPASS               may bypass all object access controls
 CMEXEC               may change mode to exec
 CMKRNL               may change mode to kernel
 DIAGNOSE             may diagnose devices
 DOWNGRADE            may downgrade object secrecy
 EXQUOTA              may exceed disk quota
 GROUP                may affect other processes in same group
 GRPNAM               may insert in group logical name table
 GRPPRV               may access group objects via system protection
 IMPERSONATE          may impersonate another user
 IMPORT               may set classification for unlabeled object
 LOG_IO               may do logical i/o
 MOUNT                may execute mount acp function
 NETMBX               may create network device
 OPER                 may perform operator functions
 PFNMAP               may map to specific physical pages
 PHY_IO               may do physical i/o
 PRMCEB               may create permanent common event clusters
 PRMGBL               may create permanent global sections
 PRMMBX               may create permanent mailbox
 PSWAPM               may change process swap mode
 READALL              may read anything as the owner
 SECURITY             may perform security administration functions
 SETPRV               may set any privilege bit
 SHARE                may assign channels to non-shared devices
 SHMEM                may create/delete objects in shared memory
 SYSGBL               may create system wide global sections
 SYSLCK               may lock system wide resources
 SYSNAM               may insert in system logical name table
 SYSPRV               may access objects via system protection
 TMPMBX               may create temporary mailbox
 UPGRADE              may upgrade object integrity
 VOLPRO               may override volume protection
 WORLD                may affect other processes in the world
 
Process rights:
 BATCH                             
 NET$MANAGE                        
 
System rights:
 SYS$NODE_DMXBBV                   
 
Auto-unshelve: on
 
Image Dump: off

There is 1 process in this job: 

  RDM_ALS_1 (*)

5045.10# buffers = 20 may be to low..NOVA::BRYDENSun Mar 02 1997 22:1714
        Peter,
        
        	One of the interesting screens would have been the PIO
        stats. Each user is running with 20 buffers, the database page
        sizes are 2,4,8,16 blocks and each buffer is 16 blocks. I wonder
        if you are getting a lot of I/o as a aresult of this. Have a look
        at the PIO stats - data fetches and see what the LB stats are. In
        particular teh pool overflows. Maybe you need to increase teh
        number of buffers per user.
        
       	Another thought, have you dumped the pages shown in the stall
        messages to see  what data it is waiting for?
        
        Dave
5045.11Another stall with more info4107::PLINDGREA customer called...Mon Mar 03 1997 04:421443
	Here's another hang situation when AIJ is enabled with some RMU/SHOW
	STAT screens (but I missed the PIO-screen Dave)

	We are going to apply the prerelease of ECO1 from 22-feb-1997.

These are the customers own words:

**************************************************************************

These copies are from a test with CARRY OVER LOCKS DISABLED !!

Processes started to hung almost imediately.

After I had taken all the copies below I stopped the process RDB_UPDRDB and
imediately the hanging started to recover.

Afterwards I also have seen other processes hanging without the RDB_UPDRDB
involved.

Before this test we had been running more then 55 hours without any problems
but of course also with AIJ disabled.

****************************************************************************


Dmxbbv> rmu /show locks /mode=blocking
================================================================================
SHOW LOCKS/MODE=BLOCKING Information
================================================================================

--------------------------------------------------------------------------------
Resource: page 10

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Waiting:  000016E5  SUP_MAIN.......     0D001B60  00000000  PR        CR
Blocker:  000016E9  RDB_UPDRDB.....     0F0009BC  00000000  PW        PW

--------------------------------------------------------------------------------
Resource: page 10

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Waiting:  000016E3  TWC_MAIN.......     0B001BDB  00000000  PR        CR
Blocker:  000016E9  RDB_UPDRDB.....     0F0009BC  00000000  PW        PW

Dmxbbv> rmu /show locks /mode=waiting 
================================================================================
SHOW LOCKS/MODE=WAITING Information
================================================================================

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016DE  OPE_EVENT......     38000517  00000000  PR        NL
Waiting:  000016E1  TRA_MAIN.......     25001C92  00000000  PR        NL
Waiting:  000010DF  OPE_ALARM......     1B001158  00000000  PR        NL
Waiting:  000016E6  RDM_ALS_1......     04001625  00000000  PR        NL
Waiting:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL
Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: page 10

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E9  RDB_UPDRDB.....     0F0009BC  00000000  PW        PW
Waiting:  000016E5  SUP_MAIN.......     0D001B60  00000000  PR        CR
Waiting:  000016E3  TWC_MAIN.......     0B001BDB  00000000  PR        CR

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E0  TRA_SUBSCRIBE..     4A0009FB  00000000  PR        NL
Waiting:  000016DE  OPE_EVENT......     38000517  00000000  PR        NL
Waiting:  000016E1  TRA_MAIN.......     25001C92  00000000  PR        NL
Waiting:  000010DF  OPE_ALARM......     1B001158  00000000  PR        NL
Waiting:  000016E6  RDM_ALS_1......     04001625  00000000  PR        NL
Waiting:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL
Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000010DF  OPE_ALARM......     1B001158  00000000  PR        NL
Waiting:  000016E6  RDM_ALS_1......     04001625  00000000  PR        NL
Waiting:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL
Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E6  RDM_ALS_1......     04001625  00000000  PR        NL
Waiting:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL
Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Resource: page 10

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E5  SUP_MAIN.......     0D001B60  00000000  PR        CR
Waiting:  000016E3  TWC_MAIN.......     0B001BDB  00000000  PR        CR

--------------------------------------------------------------------------------
Resource: remote monitor 1

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL

--------------------------------------------------------------------------------
Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL
Resource: remote monitor 1
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Waiting:  000016EA  TRA_678958.....     0D000A25  00000000  PR        NL

          ProcessID Process Name        Lock ID   System ID Requested Granted  
          --------- ---------------     --------- --------- --------- -------
Blocker:  000016E1  TRA_MAIN.......     25001C92  00000000  PR        NL


Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL


Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:55:37
Waiting:  000010DF  OPE_ALARM......     1B001158  00000000  PR        NL
Rate: 3.00 Seconds          Storage Area Information        Elapsed: 00:17:55.57
Page: 1 of 208     DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
Blocker:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL
--------------------------------------------------------------------------------
Waiting:  000016E6  RDM_ALS_1......     04001625  00000000  PR        NL
  
Storage area "RDB$SYSTEM"
          --------- ---------------     --------- --------- --------- -------
Waiting:  000016E3  TWC_MAIN.......     44001F4F  00000000  PR        NL       

          ProcessID Process Name        Lock ID   System ID Requested Granted 
Resource: remote monitor 1
Area ID number is 1
Filename is "DMXBBV$DKB300:<000000.BBV_DB>BBV_DB_DEFAULT.RDA;1"
Waiting:  000016E2  PDB_MAIN.......     16001055  00000000  PR        NL
Access mode is read/write                                                    
--

Waiting:  000016E5  SUP_MAIN.......     50000C90  00000000  PR        NL
Waiting:  000016E4  RSM_MAIN.......     5C00082C  00000000  PR        NL
------------------------------------------------------------------------------Waiting: 
000016EA  TRA_678958.....     0D000A25  00000000  PR        NL

Waiting:  000016E7  PAC_MAIN.......     48001C03  00000000  PR        NL
Waiting:  000016E9  RDB_UPDRDB.....     23001C4D  00000000  PR        NL
Page format is uniform
Page size is 2 blocks
- Current physical page count is 8197
Row level locking is enabled
Row caching is disabled
No row cache is defined for this area
Extends are enabled
- Extend area by 20%, minimum of 96 pages, maximum of 9992 pages
- Area has never been extended
Volume set spreading is enabled
Snapshot area ID number is 255
SPAMs are enabled
- Interval is 1992 data pages
--------------------------------------------------------------------------------
Exit Help Menu >next_page <prev_page Options Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:55:31
Rate: 3.00 Seconds              Lock Information            Elapsed: 00:17:49.56
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Adjustable record locking granularity is enabled
- Fanout factor 1 is 10 (10 pages)
- Fanout factor 2 is 10 (100 pages)
- Fanout factor 3 is 10 (1000 pages)
Carryover lock optimization is disabled
Lock Tree Partitioning is disabled
Lock timeout interval is 15 seconds
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Help Menu Options Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:55:25
Rate: 3.00 Seconds             Buffer Information           Elapsed: 00:17:43.54
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Default user buffer count is 20
Default recovery buffer count is 20
Buffer size is 16 blocks
Global Buffers are disabled
- Global buffer count is 250
- Maximum global buffer count per user is 5
- Page transfer via memory is disabled
Global section size with global buffers disabled is 1088219 bytes
- With global buffers enabled is 3751937 bytes
Asynchronous pre-fetch is enabled
- Maximum pre-fetch depth is 5 buffers
Detected asynchronous pre-fetch is enabled
- Maximum pre-fetch depth is 4 buffers
- Pre-fetch threshold is 4 pages
Asynchronous batch-write is enabled
- Clean buffer count is 5
- Maximum batch size is 4 buffers
--------------------------------------------------------------------------------
Exit Help Menu Options Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:55:13
Rate: 3.00 Seconds            General Information           Elapsed: 00:17:31.51
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Database created at 24-FEB-1997 10:18:58.32
Maximum user count is 50
Maximum node count is 1
Database open mode is Automatic
Database close mode is Automatic
Snapshot mode is Automatic
Statistics collection is enabled
Active storage area count is 104
Reserved storage area count is 150
Default recovery-unit journal filename is "DMXBBV$DKB100:[RUJDIR]"
Date of last backup is  2-MAR-1997 21:33:59.17
Fast incremental backup is enabled
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Help Menu Options Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:38
Rate: 3.00 Seconds             Locking Dashboard            Elapsed: 00:16:56.46
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Lock Timeout Intvl         15         15         15         15         15    0
Ready AreaSerially          0          0          0          0          0    0
Snap Quiet Point            1          1          1          1          1    0
Hold Retrvl Locks           0          0          0          0          0    0
Coarse Buf Lockng           0          0          0          0          0    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:35
Rate: 3.00 Seconds                IO Dashboard              Elapsed: 00:16:53.45
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Buffer Count               20         20         20         20         20    0
  
APF Enabled                 1          1          1          1          1    0
APF Depth                   5          5          5          5          5    0
  
DAPF Enabled                1          1          1          1          1    0
DAPF Depth Count            4          4          4          4          4    0
DAPF Start Count            4          4          4          4          4    0
  
ABW Enabled                 1          1          1          1          1    0
ABW Clean BufCount          5          5          5          5          5    0
ABW Batch Max               4          4          4          4          4    0
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:29
Rate: 3.00 Seconds               RCS Dashboard              Elapsed: 00:16:47.56
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Ckpt Buffer Count          15         15         15         15         15    0
Batch Count              3000       3000       3000       3000       3000    0
Checkpoint                  1          1          1          1          1    0
Ckpt Time Interval          0          0          0          0          0    0
  
Sweep Interval              1          1          1          1          1    0
Low Cold Thshld             1          1          1          1          1    0
High Cold Thshld         1000       1000       1000       1000       1000    0
Cold Record Count           0          0          0          0          0    0
Abort Sweep                 0          0          0          0          0    0
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:27
Rate: 3.00 Seconds               DBR Dashboard              Elapsed: 00:16:45.34
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Buffer Count               20         20         20         20         20    0
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:26
Rate: 3.00 Seconds               ALS Dashboard              Elapsed: 00:16:44.29
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
AIJ Hiber Time             50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
Emergency AIJ               0          0          0          0          0    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:24
Rate: 3.00 Seconds               ABS Dashboard              Elapsed: 00:16:42.06
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Quiet Point                 0          0          0          0          0    0
Overwrite Allowed           0          0          0          0          0    0
OverwriteImmediate          0          0          0          0          0    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:23
Rate: 3.00 Seconds             Monitor Dashboard            Elapsed: 00:16:41.29
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Max DBR Count              50         50         50         50         50    0
ABS Priority               15         15         15         15         15    0
ALS Priority               15         15         15         15         15    0
DBR Priority               15         15         15         15         15    0
LCS Priority               15         15         15         15         15    0
LRS Priority               15         15         15         15         15    0
RCS Priority               15         15         15         15         15    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:21
Rate: 3.00 Seconds               RUJ Dashboard              Elapsed: 00:16:39.21
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
RUJ Alloc Blocks          127        127        127        127        127    0
RUJ Extend Blocks         127        127        127        127        127    0
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:20
Rate: 3.00 Seconds            Row Cache Dashboard           Elapsed: 00:16:38.28
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Insert Enabled              1          1          1          1          1    0
RCRL Count                  0          0          0          0          0    0
Latch Spin Count         1024       1024       1024       1024       1024    0
WS Unmark Threshld         10         10         10         10         10    0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:18
Rate: 3.00 Seconds           Hot Standby Dashboard          Elapsed: 00:16:36.63
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Network Timeout           120        120        120        120        120    0
Connect Timeout             5          5          5          5          5    0
Data Sync Mode              0          0          0          0          0    0
  
Server Checkpoint         100        100        100        100        100    0
  
Gap Timeout                 5          5          5          5          5    0
Governor Enabled            1          1          1          1          1    0
Suspend ABS                 0          0          0          0          0    0
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:17
Rate: 3.00 Seconds            Checkpoint Dashboard          Elapsed: 00:16:35.39
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Ckpt Blocks                 0          0          0          0          0    0
Ckpt Time Interval          0          0          0          0          0    0
Ckpt Tx Interval   2147483647 2147483647 2147483647 2147483647 2147483647    0
  
CTJ Tx Interval           256        256        256        256        256    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:16
Rate: 3.00 Seconds               AIJ Dashboard              Elapsed: 00:16:34.03
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Min IO Blocks               0          0          0          0          0    0
Max IO Blocks             127        127        127        127        127    0
AIJ Stall Interval         50         50         50         50         50    0
Root Stall Intervl         50         50         50         50         50    0
Switch Global Ckpt          1          1          1          1          1    0
Check Control Recs          1          1          1          1          1    0
  
ARB Count                 300        300        300        300        300    0
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:54:14
Rate: 3.00 Seconds             Locking Dashboard            Elapsed: 00:16:32.26
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
  
Database.......... Current... Previous.. Lowest.... Highest... Original.. Chng
Attribute.Name.... Value..... Value..... Value..... Value..... Value..... Cnt.
  
Lock Timeout Intvl         15         15         15         15         15    0
Ready AreaSerially          0          0          0          0          0    0
Snap Quiet Point            1          1          1          1          1    0
Hold Retrvl Locks           0          0          0          0          0    0
Coarse Buf Lockng           0          0          0          0          0    0
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Options Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:19
Rate: 3.00 Seconds          Group Commit Statistics         Elapsed: 00:15:37.57
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
  
  
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
group commits                  4        0        1.2         1146           0.7
cache overflows                0        0        0.0            0           0.0
quick flushes                  0        0        0.0            0           0.0
  
ARB pool searches              0        0        0.5          526           0.3
    pre-allocation             0        0        0.5          518           0.3
    pool empty                 0        0        0.0            0           0.0
  
  
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:17
Rate: 3.00 Seconds               AIJ Statistics             Elapsed: 00:15:35.11
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
AIJ file writes                0        0        0.3          338           0.2
    data                       0        0        0.3          337           0.2
    control                    0        0        0.0            0           0.0
    file extend                0        0        0.0            0           0.0
    switch over                0        0        0.0            0           0.0
  
records written               10        0        7.8         7363           4.6
blocks written                 1        0        1.3         1282           0.8
    filler bytes             136        0       99.7        93288          58.7
  
lock rebuilds                  0        0        0.0            1           0.0
    AIJ file reads             0        0        0.0           21           0.0
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:16
Rate: 3.00 Seconds            Recovery Statistics           Elapsed: 00:15:34.56
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
process attaches               0        0        0.0           14           0.0
process failures               0        0        0.0            0           0.0
DB freeze len x100             0        0        0.0            0           0.0
Tx REDO count                  0        0        0.0            0           0.0
  redo time x100               0        0        0.0            0           0.0
Tx UNDO count                  0        0        0.0            0           0.0
  undo time x100               0        0        0.0            0           0.0
No UNDO needed                 0        0        0.0            0           0.0
Tx committed                   0        0        0.0            0           0.0
Tx rolled back                 0        0        0.0            0           0.0
No resolve needed              0        0        0.0            0           0.0
AIJ recover x100               0        0        0.0            0           0.0
GB recover x100                0        0        0.0            0           0.0
Cache recover x100             0        0        0.0            0           0.0
RUJ file reads                 0        0        0.0            0           0.0
AIJ file reads                 0        0        0.0           21           0.0
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:15
Rate: 3.00 Seconds           Checkpoint Statistics          Elapsed: 00:15:33.04
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
transactions                   2        0        1.7         1587           1.0
checkpoints                    0        0        0.0            0           0.0
    AIJ growth                 0        0        0.0            0           0.0
    txn limit                  0        0        0.0            0           0.0
    time limit                 0        0        0.0            0           0.0
    rollback                   0        0        0.0            0           0.0
    AIJ backup                 0        0        0.0            0           0.0
    global                     0        0        0.0            0           0.0
interval: AIJ blks             0        0        0.0            0           0.0
interval: tx count             0        0        0.0            0           0.0
interval: seconds              0        0        0.0            0           0.0
  
checkpoint stall               0        0        0.0           24           0.0
flushed buffers                0        0        0.0            0           0.0
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:14
Rate: 3.00 Seconds               RUJ Statistics             Elapsed: 00:15:31.97
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
RUJ file writes                0        0        0.0           16           0.0
    data                       0        0        0.0           37           0.0
    control                    0        0        0.0            8           0.0
    file extend                0        0        0.0            8           0.0
records written                9        0        7.4         6940           4.3
RUJ file reads                 0        0        0.0            0           0.0
  
blocks written                 0        0        0.0           19           0.0
       read                    0        0        0.0            0           0.0
  
cache overflows                0        0        0.0            0           0.0
DBKEY cache hits               0        0        0.2          228           0.1
      overflows                0        0        0.0            0           0.0
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:13
Rate: 3.00 Seconds               2PC Statistics             Elapsed: 00:15:31.55
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
total tx count                 2        0        1.7         1587           1.0
  2PC tx count                 0        0        0.0            0           0.0
  
total tx time x100            13        0       10.1         9471           5.9
  reg tx time x100            13        0       10.1         9471           5.9
  2PC tx time x100             0        0        0.0            0           0.0
  
prepared time x100             0        0        0.0            0           0.0
  
2PC tx resolved                0        0        0.0            0           0.0
   2PC committed               0        0        0.0            0           0.0
   2PC aborted                 0        0        0.0            0           0.0
  
  
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:12
Rate: 3.00 Seconds               ALS Statistics             Elapsed: 00:15:30.32
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
statistic.........      rate.per.second............. total....... average......
name..............      max..... cur..... avg....... count....... per.trans....
  
AIJ file writes                0        0        0.3          338           0.2
    data                       0        0        0.3          337           0.2
    control                    0        0        0.0            0           0.0
    file extend                0        0        0.0            0           0.0
    switch over                0        0        0.0            0           0.0
  
AIJ write time                 0        0        0.0            0           0.0
ALS hiber count                2        0        0.5          470           0.2
AIJ hiber time                 0        0        0.2          256           0.1
AIJ extend time                0        0        0.0            0           0.0
group commits                  2        0        0.8          807           0.5
  ARBs formatted               1        0        0.9          863           0.5
  ARBs background              0        0        0.0            2           0.0
premature IO saved             0        0        0.0            0           0.0
cache overflows                0        0        0.0            0           0.0
--------------------------------------------------------------------------------
Exit Graph Help Menu Options Pause Reset Set_rate Time_plot Unreset Write X_plot
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:11
Rate: 3.00 Seconds          AIJ Journal Growth Trend        Elapsed: 00:15:29.22
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
                                    JOURN_1
  
         AIJ size:    65538   Current Eof:     1283     Percent full:   1.9
  
         +---------+---------+---------+---------+---------+---------+---------+
 91-100% |         |         |         |         |         |         |         |
 81-90%  |         |         |         |         |         |         |         |
 71-80%  |         |         |         |         |         |         |         |
 61-70%  |         |         |         |         |         |         |         |
 51-60%  |         |         |         |         |         |         |         |
 41-50%  |         |         |         |         |         |         |         |
 31-40%  |         |         |         |         |         |         |         |
 21-30%  |         |         |         |         |         |         |         |
 11-20%  |         |         |         |         |         |         |         |
  1-10%  |1        |         |         |         |         |         |         |
         +---------+---------+---------+---------+---------+---------+---------+
  
                        Sample interval is 3.00 Seconds
--------------------------------------------------------------------------------
Exit Help Menu Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:53:07
Rate: 3.00 Seconds          AIJ Journal Information         Elapsed: 00:15:25.54
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Journaling: enabled   Shutdown:   60  Notify: disabled  State: Accessible
ALS: Running    ABS: enabled   ACE: disabled  FC: enabled   CTJ: disabled
  
After-Image.Journal.Name....... SeqNum AIJsize CurrEOF Status. State.......
JOURN_1                             12   65538    1283 Current Accessible
JOURN_2                         Unused   65535   Empty Latent  Accessible
JOURN_3                         Unused   65535   Empty Latent  Accessible
JOURN_4                         Unused   65535   Empty Latent  Accessible
JOURN_5                         Unused   65535   Empty Latent  Accessible
JOURN_6                         Unused   65535   Empty Latent  Accessible
JOURN_7                         Unused   65535   Empty Latent  Accessible
JOURN_8                         Unused   65535   Empty Latent  Accessible
Available AIJ slot 1
Available AIJ slot 2
Available AIJ slot 3
Available AIJ slot 4
  
  
--------------------------------------------------------------------------------
Bell Exit Help Menu >next_page <prev_page Refresh Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:17
Rate: 3.00 Seconds            Transaction Analysis          Elapsed: 00:14:35.04
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:15
Rate: 3.00 Seconds              Buffer Analysis             Elapsed: 00:14:33.58
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:12
Rate: 3.00 Seconds             Row Cache Analysis           Elapsed: 00:14:30.57
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Row cache is not allowed
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:09
Rate: 3.00 Seconds               Index Analysis             Elapsed: 00:14:27.56
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
57.7% duplicate btree fetch above 15.0% threshold
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:06
Rate: 3.00 Seconds              Locking Analysis            Elapsed: 00:14:24.64
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Process 000016E3:1 excessive stall on lock 0B001BDB for waiting for page 40:10 (
Process 000016E5:1 excessive stall on lock 0D001B60 for waiting for page 40:10 (
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:05
Rate: 3.00 Seconds               Area Analysis              Elapsed: 00:14:22.78
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
data BBV_DB_DEFAULT async write I/O stalls 1.0 exceeded average 0.1
data BBV_DB_DEFAULT sync write I/O stalls 1.8 exceeded average 1.5
data ANALOG_POINT sync read I/O stalls 1.0 exceeded average 0.3
data ANALOG_POINT_IND sync read I/O stalls 1.0 exceeded average 0.3
data BAR_CBX_TIME sync read I/O stalls 1.0 exceeded average 0.3
data BAR_CBX_TIME_IND sync read I/O stalls 1.0 exceeded average 0.3
data DIGITAL_POINT_EVENT sync read I/O stalls 0.9 exceeded average 0.3
data DIGITAL_POINT_EVENT sync write I/O stalls 2.1 exceeded average 1.5
data FURN_POSITION sync read I/O stalls 0.6 exceeded average 0.3
data FURN_POSITION_IND sync read I/O stalls 1.1 exceeded average 0.3
data GRT_GENERAL async write I/O stalls 0.5 exceeded average 0.1
data GRT_GENERAL_IND sync read I/O stalls 0.4 exceeded average 0.3
data GRT_INTERSTAND sync read I/O stalls 1.2 exceeded average 0.3
data GRT_INTERSTAND_IND sync read I/O stalls 0.9 exceeded average 0.3
data GRT_STAND async write I/O stalls 0.7 exceeded average 0.1
data GRT_STAND sync read I/O stalls 0.5 exceeded average 0.3
data GRT_STAND_IND sync read I/O stalls 0.6 exceeded average 0.3
--------------------------------------------------------------------------------
Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:03
Rate: 3.00 Seconds              Record Analysis             Elapsed: 00:14:21.51
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:02
Rate: 3.00 Seconds             Recovery Analysis            Elapsed: 00:14:20.11
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:52:00
Rate: 3.00 Seconds                RUJ Analysis              Elapsed: 00:14:18.50
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
35.5% synchronous RUJ I/O above 10.0% threshold
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:58
Rate: 3.00 Seconds                AIJ Analysis              Elapsed: 00:14:15.76
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Log server is Automatic
AIJ JOURN_1 device DMXBBV$DKB300: same as storage area
AIJ JOURN_2 device DMXBBV$DKB300: same as storage area
AIJ JOURN_3 device DMXBBV$DKB300: same as storage area
AIJ JOURN_4 device DMXBBV$DKB300: same as storage area
AIJ JOURN_5 device DMXBBV$DKB300: same as storage area
AIJ JOURN_6 device DMXBBV$DKB300: same as storage area
AIJ JOURN_7 device DMXBBV$DKB300: same as storage area
AIJ JOURN_8 device DMXBBV$DKB300: same as storage area
0.2% background ARBs below 50.0% threshold
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:56
Rate: 3.00 Seconds            Transaction Analysis          Elapsed: 00:14:13.98
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:54
Rate: 3.00 Seconds              Buffer Analysis             Elapsed: 00:14:12.49
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
Nothing to report with current configuration
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:31
Rate: 3.00 Seconds     Checkpoint Information (Unsorted)    Elapsed: 00:13:49.14
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID  Ckpt.Vno:Ckpt.Vbn QuietVno ST Tx.Seq Tx.Start.Time AIJ: 12:1283
000016E0:1        12        3       12
000016DE:1                          12
000016E1:1        12        2       12
000010DF:1                          12
000016E6:1s
000016E3:1        12       29       12 RO 132331921:44:37.72
000016E2:1        12       17       12
000016E5:1        12       16       12 RO 132330221:44:36.90
000016E4:1        12      332       12
000016E9:1        12      533       12
000016E7:1                          12
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu >next_page <prev_page Refresh Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:28
Rate: 3.00 Seconds             Process Accounting           Elapsed: 00:13:46.13
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Process.name... CPUtime.... EnqCnt. PGflts. NumDio. WSsize. VMsize.
000016E0:1 TRA_SUBSCRIBE   00:00:00.52    1833    1115     559   19888  209280
000016DE:1 OPE_EVENT       00:00:00.22    1847     909     137   14128  206784
000016E1:1 TRA_MAIN        00:00:00.24    3866     980     250   18624  208192
000010DF:1 OPE_ALARM       00:00:00.21    1858     910     133   12768  206720
000016E6:1sRDM_ALS_1       00:00:00.18   32753     270     358    2928  175152
000016E3:1 TWC_MAIN        00:00:03.06    1752    1343    2122   22704  211968
000016E2:1 PDB_MAIN        00:00:01.65    1850    1121    2363   17488  208448
000016E5:1 SUP_MAIN        00:00:01.48    3663    1502    2142   29008  218048
000016E4:1 RSM_MAIN        00:00:00.42    1883    1240     324   15904  208320
000016E9:1 RDB_UPDRDB      00:00:00.60    1825    1176     984   20160  210496
000016E7:1 PAC_MAIN        00:00:00.42    3788     954     464   18464  208000
  
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Full Help Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:26
Rate: 3.00 Seconds         Active User Stall Messages       Elapsed: 00:13:44.10
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Since......   Stall.reason............................. Lock.ID.
000016E0:1               writing 1 page back to database
000016DE:1               locking page 1:3210
000016E1:1               writing 1 page back to database
000010DF:1               locking page 1:3154
000016E6:1s              writing AIJ sequence 12 block 1282
000016E3:1 21:44:37.74 - waiting for page 40:10 (PR)               0B001BDB
000016E2:1               writing 1 page back to database
000016E5:1 21:44:36.97 - waiting for page 40:10 (PR)               0D001B60
000016E4:1               writing ROOT file (TSNBLK VBN 592)
000016E9:1               writing ROOT file (TSNBLK VBN 592)
000016E7:1               locking page 29:181
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help LockID Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:25
Rate: 3.00 Seconds               Stall Messages             Elapsed: 00:13:43.12
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Since......   Stall.reason............................. Lock.ID.
000016E5:1 21:44:36.97 - waiting for page 40:10 (PR)               0D001B60
000016E3:1 21:44:37.74 - waiting for page 40:10 (PR)               0B001BDB
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Alarm Bell Config Exit Filter Help LockID Menu >next_page <prev_page Set_rate Wr
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:22
Rate: 3.00 Seconds             DBKEY Information            Elapsed: 00:13:40.18
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID  Data.Page..   Snap.Page..   Spam.Page..   AIP.Page..   ABM.Page..
000016E0:1  1:3169        255:27        18:1          1:3171       18:2
000016DE:1  1:3185:1                                  1:4
000016E1:1  1:3168        255:2         1:1994        1:4
000010DF:1  1:3148:5                                  1:4
000016E6:1s
000016E3:1  40:10         316:1         62:1          1:3174
000016E2:1  16:6:31       270:2         19:1          1:3173
000016E5:1  40:10         320:1         79:1          1:3174       80:2
000016E4:1  66:1638:2     320:4         66:1520       1:9
000016E9:1  24:6          278:6         28:1          1:9
000016E7:1  24:6:2                      38:1          1:9          38:2
  
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Help Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:20
Rate: 3.00 Seconds           Lock Deadlock History          Elapsed: 00:13:38.36
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Occurred...   Lock.deadlock.reason.................... #Deadlock
000016E0:1                                                                0
000016DE:1                                                                0
000016E1:1                                                                0
000010DF:1                                                                0
000016E6:1s                                                               0
000016E3:1                                                                0
000016E2:1                                                                0
000016E5:1                                                                0
000016E4:1                                                                0
000016E9:1                                                                0
000016E7:1                                                                0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:19
Rate: 3.00 Seconds            Lock Timeout History          Elapsed: 00:13:37.11
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Occurred...   Lock.timeout.reason...................... #Timeout
000016E0:1                                                                0
000016DE:1                                                                0
000016E1:1                                                                0
000010DF:1                                                                0
000016E6:1s                                                               0
000016E3:1                                                                0
000016E2:1                                                                0
000016E5:1                                                                0
000016E4:1                                                                0
000016E9:1                                                                0
000016E7:1                                                                0
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:17
Rate: 3.00 Seconds              Defined Logicals            Elapsed: 00:13:35.00
Page: 1 of 10      DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Logical.Name................. Table.Name......... Logical.Definition..........
RDMS$BIND_PRESTART_TXN        LNM$SYSTEM_TABLE    0
SQLINI                        LNM$SYSTEM_TABLE    SYS$SYSROOT:<SYSMGR>INTSQL.I
RDM$MAILBOX_CHANNEL           LNM$SYSTEM_TABLE    MBA37:
RDM$MONITOR                   LNM$SYSTEM_TABLE    SYS$SYSROOT:[SYSEXE]
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Full Help Menu >next_page <prev_page Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:16
Rate: 3.00 Seconds                Monitor Log               Elapsed: 00:13:34.10
Page: 1 of 10      DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Date/Time..............   Database Log Message.............................
  - sending normal user attach reply to 16E3:1
 2-MAR-1997 21:38:53.01 - received user attach request from 16E3:1
  - sending normal user attach reply to 16E2:1
 2-MAR-1997 21:38:53.02 - received user attach request from 16E2:1
  - sending normal user attach reply to 16E5:1
 2-MAR-1997 21:38:53.03 - received user attach request from 16E5:1
  - sending normal user attach reply to 16E4:1
 2-MAR-1997 21:39:41.12 - received user attach request from 16E4:1
  - sending normal user attach reply to 16EA:1
 2-MAR-1997 21:40:52.78 - received user attach request from 16EA:1
  - sending normal user attach reply to 16E9:1
 2-MAR-1997 21:40:55.79 - received user attach request from 16E9:1
  - sending normal user attach reply to 16E7:1
 2-MAR-1997 21:41:02.70 - received user attach request from 16E7:1
 2-MAR-1997 21:48:14.09 - received user image termination from 000016EA:1
  - sending normal user attach reply to 16CD:1
 2-MAR-1997 21:49:43.47 - received user attach request from 16CD:1
--------------------------------------------------------------------------------
Exit Help Menu >next_page <prev_page Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:13
Rate: 3.00 Seconds                DBR Activity              Elapsed: 00:13:31.09
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Activity... VBN.... Operation.......................... Lock.ID.
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
--------------------------------------------------------------------------------
Exit Help LockID Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:10
Rate: 3.00 Seconds         CPU Utilization (Unsorted)       Elapsed: 00:13:28.09
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID Process.name... CPU.Util%      10  20  30  40  50  60  70  80  90 100
                                       +---+---+---+---+---+---+---+---+---+---+
000016E0:1 TRA_SUBSCRIBE          0%   |   |   |   |   |   |   |   |   |   |   |
000016DE:1 OPE_EVENT              0%   |   |   |   |   |   |   |   |   |   |   |
000016E1:1 TRA_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
000010DF:1 OPE_ALARM              0%   |   |   |   |   |   |   |   |   |   |   |
000016E6:1sRDM_ALS_1              0%   |   |   |   |   |   |   |   |   |   |   |
000016E3:1 TWC_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
000016E2:1 PDB_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
000016E5:1 SUP_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
000016E4:1 RSM_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
000016E9:1 RDB_UPDRDB             0%   |   |   |   |   |   |   |   |   |   |   |
000016E7:1 PAC_MAIN               0%   |   |   |   |   |   |   |   |   |   |   |
                                       |   |   |   |   |   |   |   |   |   |   |
                                       |   |   |   |   |   |   |   |   |   |   |
                                       |   |   |   |   |   |   |   |   |   |   |
                                       |   |   |   |   |   |   |   |   |   |   |
                                       |   |   |   |   |   |   |   |   |   |   |
---------------------------------------+---+---+---+---+---+---+---+---+---+---+
Config Exit Help Menu >next_page <prev_page Set_rate Write Zoom !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:06
Rate: 3.00 Seconds             Active User Chart            Elapsed: 00:13:23.78
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
  
         Max Users:    50       Active Users Total:    11  Total Percent:  22.0
                            Active Users This Node:    11   Node Percent:  22.0
  
         +---------+---------+---------+---------+---------+---------+---------+
 91-100% |         |         |         |         |         |         |         |
 81-90%  |         |         |         |         |         |         |         |
 71-80%  |         |         |         |         |         |         |         |
 61-70%  |         |         |         |         |         |         |         |
 51-60%  |         |         |         |         |         |         |         |
 41-50%  |         |         |         |         |         |         |         |
 31-40%  |         |         |         |         |         |         |         |
 21-30%  |2        |         |         |         |         |         |         |
 11-20%  |         |         |         |         |         |         |         |
  1-10%  |         |         |         |         |         |         |         |
         +---------+---------+---------+---------+---------+---------+---------+
  
                        Sample interval is 3.00 Seconds
--------------------------------------------------------------------------------
Exit Help Menu Refresh Set_rate Write !
Node: DMXBBV         Oracle Rdb V7.0-0 Performance Monitor   2-MAR-1997 21:51:04
Rate: 3.00 Seconds     Checkpoint Information (Unsorted)    Elapsed: 00:13:22.07
Page: 1 of 1       DMXBBV$DKB300:<000000.BBV_DB>BBV_DB.RDB;1        Mode: Online
--------------------------------------------------------------------------------
Process.ID  Ckpt.Vno:Ckpt.Vbn QuietVno ST Tx.Seq Tx.Start.Time AIJ: 12:1283
000016E0:1        12        3       12
000016DE:1                          12
000016E1:1        12        2       12
000010DF:1                          12
000016E6:1s
000016E3:1        12       29       12 RO 132331921:44:37.72
000016E2:1        12       17       12
000016E5:1        12       16       12 RO 132330221:44:36.90
000016E4:1        12      332       12
000016E9:1        12      533       12
000016E7:1                          12
  
  
  
  
  
  
--------------------------------------------------------------------------------
Config Exit Help Menu >next_page <prev_page Refresh Set_rate Write Zoom !



5045.12Try disabling ABWORAREP::HERON::GODFRINDOracle Rdb EngineeringMon Mar 03 1997 06:3914
Peter,

Turns out Philippe and I are looking at a problem that may be what you suffer
from. It also involves processes stalling on page locks that others don't want
to release. This exists both with and without fast commit (but has probably a
larger impact with fast commit, since page locks can be retained longer). Your
dumps indicate you are using fast commit.

It looks like the problem is related to ABW. Can you repeat your tests having
disabled ABW ? Just do 

ALTER DA FILE ... ASYNB BATCH WRITE DISABLED:

/albert
5045.134107::PLINDGREA customer called...Mon Mar 03 1997 09:3533
    	Albert,
    
    one of the first thing we did was to turn FC off but this did not help
    then we defined:
    
     RDM$BIND_APF_ENABLED   "0"                                                    
     RDM$BIND_DAPF_ENABLED  "0"                                                    
     RDM$BIND_ABW_ENABLED   "0"
    
    this didn't help either. In the dump you saw we had turned "everything"
    on again.
    
    However I'm very interested about your progress and I will ask the
    customer to disable ABW (and leave FC on?).
    
    David (re. 10), we have increased the user buffer count from 20 to 40,
    we do no know the outcome of this change, test will be done tonight.
    
    The locked recource is random, we can't see any pattern, different
    areas different pages for each time. The stalls will occur in different
    programs no pattern that we have dicoverd so far.
    
    The only pattern we can see is that if we turn AIJ off the stalls will
    go away.
    
    We have also installed ECO1 (the first prerelease) without any luck. I
    have sent them the last release of ECO1 from the 22-feb-1997, it will
    be installed tomorrow (4/3).
    
    Regards
    
    Peter
                                                                          
5045.144107::PLINDGREA customer called...Mon Mar 03 1997 11:465
    
    Just a short update, we have now tested increasing the users buffer
    count from 20 to 40 but this did not help.
    
    //Peter
5045.15rmu/bugcheck blocking process...NOVA::BRYDENMon Mar 03 1997 19:427
        Peter, 
        	One thing that might give us more info, When this hang
        occurs again, can you get the customer to do an RMU/BUGCHECK/PID= 
        <db_name> maybe if we can see the structures that might tell us
        something.
        
        Dave
5045.16Disable ABW (but really)ORAREP::HERON::GODFRINDOracle Rdb EngineeringTue Mar 04 1997 03:5527
>        	One thing that might give us more info, When this hang
>        occurs again, can you get the customer to do an RMU/BUGCHECK/PID= 
>        <db_name> maybe if we can see the structures that might tell us
>        something.

I'd go with that suggestion. Note that the bugcheck should be done against
the process that blocks (the blocker, not the blocked). In that bugcheck,
look for the "PIO context" section. See if the page being blocked is shown in a
state such as this:

2:86v1(EU)RUm   2:87v1(null)RUm 2:88v1(null)RUm 

(the lowercase "m" is important. It indicates the page is still considered as
being written in an ABW operation). If this is the case, then you may suffer
from a problem that was isolated just now. The workaround is to disable ABW.
But you said you did this already ... Are you sure about that ? Make sure this
is the case (the dashboard will show it).

Both lock-up cases you posted indicate ABW is enabled (see the IO dashboard).
Try disabling it for real, i.e. do:

	SQL> ALTER DA FILE xxxx
        cont> ASYNC BATCH WRITE DISABLED;

And see what happens.

/albert
5045.17No hang last night!4107::PLINDGREA customer called...Tue Mar 04 1997 04:2015
    	Hi all
    
    Last night the customer run his application and committed 170.000
    transactions with ABW disabled and AIJ enabled without any stalls!
    
    CARRY OVER LOCKS was disabled and user buffer count 40. During the day
    we will enable CARRY OVER LOCKS and lower the user buffer count to 20
    to check that those parameters did not have anything to do with the
    successful run last night.
    
    If we get a stall we will use RMU/BUGCHECK/PID=blocking-process.
      
    
    Peter
    
5045.18Use RMU/BUGCHECK with cautionHOTRDB::PMEADPaul, [email protected], 719-577-8032Tue Mar 04 1997 09:163
    One caveat about RMU/BUGCHECK.  Never do it against a process that
    attaches to the same database more than once.  The process will hang;
    the DB will hang; you will likely end up rebooting your system.
5045.19ORAREP::HERON::GODFRINDOracle Rdb EngineeringTue Mar 04 1997 10:2211
>    One caveat about RMU/BUGCHECK.  Never do it against a process that
>    attaches to the same database more than once.  The process will hang;
>    the DB will hang; you will likely end up rebooting your system.

You are so very right about that, Paul. 

I just got hit by that one two weeks ago, while trying to debug some problem on
a customer system. We indeed ended up rebooting the system. That did not make
me popular ...

/albert
5045.20Disabling ASYNC BATCH WRITE seems to help 4107::PLINDGREA customer called...Wed Mar 05 1997 03:5215
    	Hi
    
    Our initial test showed that turning off ABW prevented new stalls (even
    if AIJ  was enabled)
    
    We enabled ABW and after a short while we had a stall again. We are now
    working on getting a RDSBUGCHK.DMP from RMU/BUGCHECK/PID=blocking_pid.
    
    The factory has other production problems rigth now (not caused by Rdb)
    which prevents testing, so it may take a while.
    
    regards
    
    Peter
                            
5045.21ORAREP::HERON::GODFRINDOracle Rdb EngineeringWed Mar 05 1997 04:4114
>    Our initial test showed that turning off ABW prevented new stalls (even
>    if AIJ  was enabled)

Ok. that probably means that we are seeing the right problem.

>    We enabled ABW and after a short while we had a stall again. We are now
>    working on getting a RDSBUGCHK.DMP from RMU/BUGCHECK/PID=blocking_pid.

Yes, please do that.
    
The strange thing is that you do not get the problem with AIJ disabled. The
presence or absence of AIJ should have no effect (it does not in my tests)

/albert
5045.22NOVA::R_ANDERSONOracle Corporation (603) 881-1935Wed Mar 05 1997 06:187
>    One caveat about RMU/BUGCHECK.  Never do it against a process that
>    attaches to the same database more than once.  The process will hang;
>    the DB will hang; you will likely end up rebooting your system.

Fixed in Rdb7.  I do not believe the fix is in ECO1, though...

Rick
5045.23NOVA::R_ANDERSONOracle Corporation (603) 881-1935Wed Mar 05 1997 06:459
>>    Our initial test showed that turning off ABW prevented new stalls (even
>>    if AIJ  was enabled)
>
>Ok. that probably means that we are seeing the right problem.

The ABW problem has been fixed in Rdb7, but the fix probably did not make ECO1.
This is a problem specific to Rdb7.

Rick