Question

Damage to SDE spatial record with Oracle Non-Spatial Writer???

  • 9 July 2018
  • 1 reply
  • 3 views

Badge +11

We have SDE connected with an Oracle backend database

The proposal is to use FME Oracle Non-spatial reader, FME for update required tabular data and FME to write the record with updated tabular via FME Oracle Non-spatial writer. Geometry will never change just updating tabular data

Yes, I could use FME SDE Reader but when I looking a 400,000 spatial with tabular records, it's slow

QUESTION, will this damage the spatial record?


1 reply

Userlevel 4

If you're only looking to update attribute data and not the geometry, I'd rather recommend using the SQLExecutor, it should be the best performing option since you can specifically target only the necessary columns to update, without touching the geometry column, e.g.

UPDATE my_table
SET my_attribute = 'new_value'
WHERE my_primary_key = 12345

Reply