728x90
unix or linux 에서 non oracle user 로 sqlplus 접속을 하여 DML 를 수행 할 경우
$ sqlplus scott/tiger
SQL> connect <user>
Enter password:
Connected.
SQL> select table_name from all_tables;
select table_name from all_tables
*
ERROR at line 1:
ORA-01115: IO error reading block from file (block # )
ORA-01110: data file 1: '+DATA/testdb/datafile/system.269.765749853'
ORA-15081: failed to submit an I/O operation to a disk
와 같은 메세지가 뜨는 경우가 있다 .
OS의 권한 문제로 발생하여 OS의 권한을 수정하기 어려운 경우에는 리스너를 통해서 접속 경우 위 문제를 해결할수 있다.
EX>
$ sqlplus scott/tiger@TESTDB1
SQL> select table_name from all_tables;
정상 데이터 출력~
728x90
'oracle' 카테고리의 다른 글
[ORACLE] SQLNET.ORA PARAMETER DEFAULT VALUE (0) | 2022.09.07 |
---|---|
[ORACLE] non oracle user v$asm_diskgroup return 0 rows (0) | 2022.08.30 |
[ORACLE]테이블 통계 정보 LOCK & UNLOCK (0) | 2022.08.18 |
[ORACLE]Oracle Profile (0) | 2022.08.12 |
TNS-12531: TNS:cannot allocate memory (0) | 2022.08.02 |