Select to view content in your preferred language

SDELOB to SDO_GEOMETRY

621
1
Jump to solution
05-23-2013 05:52 AM
JamieMason
New Contributor
Hi everyone,

Please forgive me, I am new to GIS. I have a table in Oracle with points stored as an SDELOB. Is there a way to read those points for a given row? I have another table that needs those points to be inserted as SDO_GEOMETRY, and I am hoping to create a trigger that can construct the SDO_GEOMETRY using the SDELOB points and insert it into the second table.

Any tips or advice is appreciated.

Thanks!
0 Kudos
1 Solution

Accepted Solutions
VinceAngelo
Esri Esteemed Contributor
No, you don't want to try to read the raw LOB.  You could certainly migrate the
layer storage from SDELOB to ST_GEOMETRY or SDO_GEOMETRY.  Either would
then permit transfer to another table via SQL.

- V

View solution in original post

0 Kudos
1 Reply
VinceAngelo
Esri Esteemed Contributor
No, you don't want to try to read the raw LOB.  You could certainly migrate the
layer storage from SDELOB to ST_GEOMETRY or SDO_GEOMETRY.  Either would
then permit transfer to another table via SQL.

- V
0 Kudos