Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SDO_GEOMETRY(WKT string) on Oracle Express?

725974Oct 6 2009 — edited Oct 6 2009
I have two different results here on two different Oracle Servers.
The first one (10g Enterprise) is creating the geometry from WKT as expected.
SQL> select
  2    SDO_GEOMETRY('POINT(0 0)', 8307)
  3  from dual;

SDO_GEOMETRY('POINT(00)',8307)(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM
--------------------------------------------------------------------------------
SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(0, 0, NULL), NULL, NULL)
The other one, 10g Express, is not.
SQL> select
  2    SDO_GEOMETRY('POINT(0 0)', 8307)
  3  from dual;

SDO_GEOMETRY('POINT(00)',8307)(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM
--------------------------------------------------------------------------------
SDO_GEOMETRY(NULL, 8307, NULL, NULL, NULL)
Is this a configuration issue or is this a limitation of the Express versions?

Edited by: user3533732 on Oct 6, 2009 3:36 AM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 3 2009
Added on Oct 6 2009
2 comments
5,477 views