ORA-27300: OS system dependent operation:open failed failed with status
Error:
ORA-27300: OS system dependent operation:open failed failed with status: 13
SQL> alter database backup controlfile to trace as 'c:\control.txt';
alter database backup controlfile to trace as 'c:\control.txt'
*
ERROR at line 1:
ORA-01278: error creating file 'C:\CONTROL.TXT'
ORA-27300: OS system dependent operation:open failed failed with status: 13
ORA-27301: OS failure message: The data is invalid.
ORA-27302: failure occurred at: SlfFopen1
Cause:
You donot have permission to write on the C: drive
Solution:
Choose the different path which Oracle user has permission
SQL> alter database backup controlfile to trace as 'D:\control.txt';
Database altered.
Error
ORA-27300: OS system dependent operation:open failed failed with status: 22
SQL> alter database backup controlfile to trace as 'c:\D:\control.txt';
alter database backup controlfile to trace as 'c:\D:\control.txt'
*
ERROR at line 1:
ORA-01278: error creating file 'C:\D:\CONTROL.TXT'
ORA-27300: OS system dependent operation:open failed failed with status: 22
ORA-27301: OS failure message: The device does not recognize the command.
ORA-27302: failure occurred at: SlfFopen1
Cause:
Invalid location or path define in command which not exists
Solution:
Correct the location and path define in command.
SQL> alter database backup controlfile to trace as 'D:\control.txt';
Database altered.