ORA-27300: OS system dependent operation:open failed failed with status

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.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.