Hi,
OS - WIN 2019
DB - 19c
I am running below rman code and getting below error, having enough space in the drive.
RMAN> run
{
backup incremental level 0 cumulative device type disk tag 'weekly_db' database;
backup device type disk tag 'db_arc' archivelog all not backed up delete all input;
allocate channel c1 device type disk;
delete noprompt obsolete device type disk;
release channel c1;
}
error
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/15/2021 14:11:41
ORA-19502: write error on file "F:\ORA19\FRA\19DEV\BKPSET\1R01ABD1_2_3", block number 25340032 (block size=8192)
ORA-27070: async read/write failed
OSD-04016: Error queuing an asynchronous I/O request.
O/S-Error: (OS 112) There is not enough space on the disk.
Thanks.