hello.
Here is the bug i came across:
db 10.2 on windows XP (32 ).
SQL> create or replace type TVArray is varray (31) of number ;
2 ;
3 /
Warning: Type created with compilation errors
// here u HAVE to open the window with the type , remove the semicolumn and hit F8 to recompile it. In the browser it will show that it's valid now.
If you replace the type from the statement - it will work and it won't produce the error below
SQL> create table TEST_VARRAY ( id number, V_VARR TVARRAY );
Table created
SQL> insert into test_varray values (1,TVArray(1,2,3,4,5,6,7,8,9,10));
insert into test_varray values (1,TVArray(1,2,3,4,5,6,7,8,9,10))
ORA-00600: internal error code, arguments: [qcdogcti-ado], [], [], [], [], [], [], []
The bug is reproducable.
Using
Home: OraDb10g_home1
DLL: C:\oracle\product\10.2.0\db_1\bin\oci.dll
OCI: version 9.2
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
Character size: 1 byte(s)
DLLs
C:\oracle\product\10.2.0\db_1\bin\oci.dll
PL/SQL Developer
Version 7.0.1.1066 (MBCS)
09.32287 - 2 user license
Windows XP version 6.0 (build 2600) Service Pack 2
Physical memory : 2,096,360 kB (1,340,588 available)
Paging file : 4,038,524 kB (3,259,220 available)
Virtual memory : 2,097,024 kB (1,996,016 available)
Parameters
C:\Program Files\PLSQL Developer\plsqldev.exe
Preferences
Session mode: Multi
OCI Library:
Use OCI7: False
Plug-Ins
*PL/SQL Developer CompareSource Plug-In version 2003/12/03 (C:\Program Files\PLSQL Developer\PlugIns\CompareSource.dll)
*Shortcuts Plug-In v1.2 by Tiger (C:\Program Files\PLSQL Developer\PlugIns\shortcuts.dll)
(* is Active)
Here is the bug i came across:
db 10.2 on windows XP (32 ).
SQL> create or replace type TVArray is varray (31) of number ;
2 ;
3 /
Warning: Type created with compilation errors
// here u HAVE to open the window with the type , remove the semicolumn and hit F8 to recompile it. In the browser it will show that it's valid now.
If you replace the type from the statement - it will work and it won't produce the error below
SQL> create table TEST_VARRAY ( id number, V_VARR TVARRAY );
Table created
SQL> insert into test_varray values (1,TVArray(1,2,3,4,5,6,7,8,9,10));
insert into test_varray values (1,TVArray(1,2,3,4,5,6,7,8,9,10))
ORA-00600: internal error code, arguments: [qcdogcti-ado], [], [], [], [], [], [], []
The bug is reproducable.
Using
Home: OraDb10g_home1
DLL: C:\oracle\product\10.2.0\db_1\bin\oci.dll
OCI: version 9.2
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
Character size: 1 byte(s)
DLLs
C:\oracle\product\10.2.0\db_1\bin\oci.dll
PL/SQL Developer
Version 7.0.1.1066 (MBCS)
09.32287 - 2 user license
Windows XP version 6.0 (build 2600) Service Pack 2
Physical memory : 2,096,360 kB (1,340,588 available)
Paging file : 4,038,524 kB (3,259,220 available)
Virtual memory : 2,097,024 kB (1,996,016 available)
Parameters
C:\Program Files\PLSQL Developer\plsqldev.exe
Preferences
Session mode: Multi
OCI Library:
Use OCI7: False
Plug-Ins
*PL/SQL Developer CompareSource Plug-In version 2003/12/03 (C:\Program Files\PLSQL Developer\PlugIns\CompareSource.dll)
*Shortcuts Plug-In v1.2 by Tiger (C:\Program Files\PLSQL Developer\PlugIns\shortcuts.dll)
(* is Active)