[Oracle Spatial] Fonction SDO_UTIL.GETVERTICES
Aloha
Dans le manuel Orcale Spatial est décrite la fonction "SDO_UTIL.GETVERTICES". Je souhaite l'utiliser pour obtenir les coordonnées des points stockées dans ma table R_ADRESS. Cependant,
J'obtiens une erreur 904 :
ERREUR Ó la ligne 6 :
ORA-00904: "R_ADRESS"."GEOMETRY": invalid identifier
Pourtant GEOMETRY est bien le champ de type SDO_GEOM contenant mes informations de géométrie.
Code:
1 2 3 4 5 6 7 8 9
|
select
t.X COORDX,
t.Y COORDY,
t.id
FROM
TABLE(SDO_UTIL.GETVERTICES(R_ADRESS.GEOMETRY)) t
where
rownum <'2' |
Merci d'avance,
:(