Home » Server Options » Spatial » how to solve ORA-0939 (oracle 10g)
|
Re: how to solve ORA-0939 [message #451654 is a reply to message #442687] |
Fri, 16 April 2010 00:23  |
MSAM123
Messages: 29 Registered: June 2007
|
Junior Member |
|
|
INSERT is limited to 999 values in SDO_ORDINATES field when using the SDO_GEOMETRY constructor directly.
So instead use host variable for the geometry object.
CREATE OR REPLACE PROCEDURE
INSERT_GEOM(GEOM MDSYS.SDO_GEOMETRY) IS
BEGIN
INSERT INTO TEST_1 VALUES (GEOM);
COMMIT;
END;
/
|
|
|
Goto Forum:
Current Time: Mon Apr 14 05:38:44 CDT 2025
|