내맘대로긍정이 알려주는
Oracle 23ai 신기능
무료 세미나 발표자료
다운로드
trending_flat
OS환경 : Oracle Linux6.8(64bit)
DB 환경 : Oracle Database 11.2.0.4
에러는 아니고 이 검색어로 유입된 기록이 있어서 남김
검색어 : no row selected sqlplus
SQL> create table imsi (col1 number);
Table created.
SQL> select * from imsi;
no rows selected
테이블을 만들고 데이터를 넣지 않으면 select 했을 때 no rows selected 가 나옴
해결 방법 : 데이터를 넣어준다.
SQL> insert into imsi values (1);
1 row created.
SQL> commit;
Commit complete.
SQL> select * from imsi;
COL1
----------
1
1 row selected.
데이터를 넣고 commit; 를 입력한 뒤 다시 조회해보면 데이터가 들어간 것을 확인할 수 있다.
원인 : 테이블에 데이터가 없어서 나오는 메세지
'ORACLE > Trouble Shooting' 카테고리의 다른 글
OPW-00029: Password complexity failed for SYS user : Password must contain at least 8 characters. (0) | 2018.07.12 |
---|---|
oratop로 세션 모니터링, pga 초과로 인한 에러 (0) | 2018.07.09 |
[Data Guard] ORA-16789: standby redo logs configured incorrectly (0) | 2018.06.25 |
[Data Guard] Standby db redo thread 0 해결 (0) | 2018.06.15 |
[Data Guard] RFS[4]: No standby redo logfiles available for T-1 이유 (0) | 2018.06.15 |