ORA-13464: error loading GeoRaster data when Loading GeoRaster Image File
(Doc ID 2393494.1)
Last updated on NOVEMBER 17, 2019
Applies to:
Oracle Spatial and Graph - Version 12.1.0.2 and laterInformation in this document applies to any platform.
Symptoms
Errors are raised when loading GeoRaster files:
SQL> DECLARE
geor SDO_GEORASTER;
2 3 BEGIN
4 INSERT INTO TEST.georaster_table values( 2, 'TIFF', sdo_geor.init('rdt_1') );
5
6 SELECT georaster INTO geor FROM TEST.georaster_table
7 WHERE georid = 2 FOR UPDATE;
8
9 SDO_GEOR.IMPORTFROM(geor, NULL, 'TIFF', 'file', '<path>/fire_hydrants_protection.tif');
10 11 UPDATE TEST.GEORASTER_TABLE SET georaster = geor WHERE georid = 2;
12
13 COMMIT;
END;
14 15 /
DECLARE
*
ERROR at line 1:
ORA-13464: error loading GeoRaster data: - Unable to render RenderedOp for this
operation.
ORA-06512: at "MDSYS.MD", line 1723
ORA-06512: at "MDSYS.MDERR", line 17
ORA-06512: at "MDSYS.SDO_GEOR", line 6108
ORA-06512: at line 9
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 |