DATAFILE_BLOCKS The number of data blocks in the datafile
BLOCKS The number of data blocks written to the backup
BLOCK_SIZE The size of the data blocks in bytes
So BLOCKS * BLOCK_SIZE will give the number of bytes written for this
particular datafile and hence the size of the backup piece may be calculated.
SQL> select bs_key, sum(blocks*block_size)
from rc_backup_datafile
group by bs_key;
If you do not use catalog (controlfile):
SQL>select bs_key, sum(blocks*block_size)
from v$backup_datafile
group by bs_key;
1. Backup $ cd $EBS_APPS_DEPLOYMENT_DIR/oacore/html/WEB-INF/classes/ $ mv _pages _pages_old 2. Stop services cd $ADMIN_SCCRIPTS_HOME ./adapcctl.sh stop ./admanagedsrvctl.sh stop oafm_server1 ./admanagedsrvctl.sh stop oacore_server1 3. Compile the jsps manually cd $FND_TOP/patch/115/bin/ perl $FND_TOP/patch/115/bin/ojspCompile.pl --compile --flush -p 4. Checking $ cd $EBS_APPS_DEPLOYMENT_DIR/oacore/html/WEB-INF/classes/_pages $ ls -ltr 5. Start services cd $ADMIN_SCCRIPTS_HOME ./admanagedsrvctl.sh start oacore_server1 ./admanagedsrvctl.sh start oafm_server1 ./adapcctl.sh start 6. Clear your web browser cache
Comentários
Postar um comentário