Search results

  1. D

    Progress 9.1E on AIX 5.3

    We are running 9.1E on AIX 5.3 patch 3 for 1 year already. No issues.
  2. D

    HELP! Need help with recovering standby database!

    You should not truncate bi. You just need to roll forward after-images in the right order starting with the first after-image immediately after backup was taken.
  3. D

    Database Growth Report

    This version will give the size in GB. define variable dbhw as decimal init 0 no-undo. for each _AreaStatus where ( not _AreaStatus-Areaname matches "*After Image Area*" ) no-lock: display _AreaStatus-Areanum format ">>>" column-label "Num" _AreaStatus-Areaname format "x(20)"...
  4. D

    Database Growth Report

    You can use _AreaStatus VST for each _AreaStatus where ( not _AreaStatus-Areaname matches "*After Image Area*" ) no-lock: display _AreaStatus-Areanum format ">>>" column-label "Num" _AreaStatus-Areaname format "x(20)" column-label "Area Name" _AreaStatus-Totblocks...
  5. D

    creating mutivolume db with bs 8192

    To create multivolume db with bs 8192 use prostrct $DLC/bin/prostrct create /path/db-name /path/db-name.st -blocksize 8192 Check the stracture file /path/db-name.st
Back
Top