I need to insert a new record into point feature class using ST_GEOMETRY. The feature classes uses NAD_1983_StatePlane_California_III_FIPS_0403_Feet as it's coordinate system. The data I must insert is coming in with latitude and longitude instead of X/Y coordinates. I believe I need to use the ST_TRANSFORM function to reproject the the lat/long into the x/y, but I'm not sure how to do this. Here is the code I've created so far:select sde.st_transform(sde.st_point(37.780262347, -122.468853905, 0), 2) from dual;
When I execute the above statement, I get an error message that is the "Spatial References are not compatible." The SRID of 0 is the default record in the spatial_reference table, which is GCS_WGS_1984, which I believe I can use to create my point from lat/long.I appreciate any advice you may have.Thanks,Craig