Topology Validation threw ORA-29532/ORA-00600 on 12.2
(Doc ID 2401873.1)
Last updated on DECEMBER 16, 2019
Applies to:
Oracle Spatial and Graph - Version 12.2 and laterInformation in this document applies to any platform.
Symptoms
On : 12.2 version, Topology Data Model
Topology Validation threw ORA-29532/ORA-00600
run through the same processing on 12.1.0.2 against the same data the with no issues.
When run on 12.2, got the following error
That SQL returns this result for me.
Whole Topology Validation Result = TRUE
Window Topology Validation threw ORA-29532: Java call terminated by uncaught Java exception: java.sql.SQLException: ORA-00600: internal error code, arguments:
[kdsgrp1], [], [], [], [], [], [], [], [], [], [], []
ORA-06512: at "MDSYS.SDO_TOPO_MAP", line 205
ORA-06512: at line 11
==
The SQL used to test this below.
DECLARE
vtopo VARCHAR2 (32) := 'Z688SP';
retval VARCHAR2 (4000);
BEGIN
-- validate to start...
BEGIN
retval := SDO_TOPO_MAP.VALIDATE_TOPOLOGY (vtopo);
DBMS_OUTPUT.put_line ('Whole Topology Validation Result = ' || retval);
retval :=
SDO_TOPO_MAP.VALIDATE_TOPOLOGY (vtopo,
-73.0924695,
39.4026495,
-72.991853,
39.503266);
DBMS_OUTPUT.put_line (
'Window Topology Validation Result for ' || vtopo || ' = ' || retval);
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.put_line (
'Window Topology Validation threw ' || SQLERRM);
DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_backtrace);
END;
END;
ERROR
-----------------------
ORA-00600
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |
References |