Notice
Recent Posts
Recent Comments
Link
승적이익강 (勝敵而益强)
[Oracle]ORA-600: Internal error code, arguments:[kqlInvObj:user]. 본문
create table AUDIT_ACTIONS(
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kqlInvObj:user]
$ impdp system/xxxxx@UAT dumpfile=oam20130605.dmp SCHEMAS=APM
Import: Release 11.2.0.1.0 - Production on Thu Jun 6 14:06:18 2013
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
UDI-00018: Data Pump client is incompatible with database version 11.2.0.1.0
UDI-00018: Data Pump client is incompatible with database version 11.2.0.1.0
SQL> create table a(i number);
create table a(i number)
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kqlInvObj:user], [111], [], [], [],
[], [], [], [], [], [], []
create table a(i number)
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kqlInvObj:user], [111], [], [], [],
[], [], [], [], [], [], []
Solution:
select * from sys.obj$where owner# in (111);
delete from sys.obj$where owner# in (111);
commit;
'Database' 카테고리의 다른 글
[Oracle] set define 변수설정을 통한 특수문자가 포함된 데이터 INSERT 하기 (0) | 2016.05.04 |
---|---|
[Oracle] IMP-00058 and ORA-28000 (0) | 2016.05.04 |
[FireBird] 설치 및 데이터베이스 생성 (0) | 2016.05.04 |
[Altibase]개요번호 정렬 (0) | 2016.05.04 |
[altibase] 64bit 윈도우에서 32bit ODBC관리자 사용하기 (0) | 2016.05.03 |
Comments