Hi folks,
I was using TOAD 12.8.4.9 recently and noticed that my bug I reported a half decade ago is still quite active.
https://www.toadworld.com/products/toad-for-oracle/f/10/t/9913
I was wondering if there was any progress on the matter, it’s a bummer when TOAD crashes. With the old TOAD 10, the schema browser would crash the moment a georaster object was viewed. With TOAD 12, viewing the georaster object in the schema browser seems on first blush to work (unless you expressly try and click on the metadata attribute at the end of the object) but soon after doing so TOAD will begin tossing errors left and right usually
with a helping of “nil font” messages. It seem like as with version 10 five years ago to be related to the schema browser simply not liking the embedded SYS.XMLTYPE in the georaster object.
Thanks,
Paul
DROP TABLE foo;
DROP TABLE foo_rdt;
CREATE TABLE foo(
rasterid INTEGER
,theraster MDSYS.SDO_GEORASTER
);
CREATE table foo_rdt OF MDSYS.SDO_RASTER;
INSERT INTO foo VALUES(
1
,MDSYS.SDO_GEORASTER(
20001
,MDSYS.SDO_GEOMETRY(
2003
,8265
,NULL
,MDSYS.SDO_ELEM_INFO_ARRAY(
1
,1003
,1
)
,MDSYS.SDO_ORDINATE_ARRAY(
-88.2911459212039,42.7437506014213
,-88.3049939664713,42.619476899525
,-88.3187924563978,42.4952233772097
,-87.6739547352555,42.4554377139682
,-87.0302499445513,42.4124846902188
,-87.0141623430339,42.5365760510931
,-86.9980171033403,42.6606865292206
,-87.6443772184359,42.7038318721578
,-88.2911459212039,42.7437506014213
)
)
,‘FOO_RDT’
,78
,SYS.XMLTYPE(’<georasterMetadata xmlns="xmlns.oracle.com/…/totalDimensions><dimensionSize type=“ROW”>929352446729103257REGULAR828128128BSQNONENONEtruetrue50703030CENTERFunctionalFitting120712 -0 -0.03333333333333333182365 0.03333333333333333 -01BAND00255’)
)
);
COMMIT;