Skip to main content
Solved

How to tell the Esri writer to only update attributes and not geometry

  • September 19, 2017
  • 5 replies
  • 148 views

dnguye1
Participant
Forum|alt.badge.img+1

I am using Update write to do updates to a version in esri geodatabase and wonder how to I tell the writer to only update attributes and not geometry. Has anyone done something similar? Thanks!

Best answer by fmelizard

Hi @dnguye1, can you try removing the geometry with the GeometryRemover prior to write?

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

5 replies

courtney_m
Contributor
Forum|alt.badge.img+20
  • Contributor
  • September 19, 2017

If you use the UpdateDetector transformer, you can specify whether or not to match geometry - just set Match Geometry to "None".


steveatsafe
Safer
Forum|alt.badge.img+13
  • Safer
  • September 19, 2017
To confirm dnguye1 doesn't want to update the existing geometry in the geodatabase table... just the attributes. He's also not able to use the underlying database's format (for ex. Oracle) to do the update due to IT restrictions. Can the Geodatabase SDE Writer only pass non spatial attributes and only affect the non spatial attributes when doing an update?

 

 


dnguye1
Participant
Forum|alt.badge.img+1
  • Author
  • Participant
  • September 19, 2017

If you use the UpdateDetector transformer, you can specify whether or not to match geometry - just set Match Geometry to "None".

Courtney, thanks for your responses. However, what I am looking for is a way to tell the Update writer not to update geometry from a coming stream of data that has attributes and geometry. UpdateDetector does the comparison only I believe.


fmelizard
Safer
Forum|alt.badge.img+21
  • Safer
  • Best Answer
  • September 19, 2017

Hi @dnguye1, can you try removing the geometry with the GeometryRemover prior to write?


dnguye1
Participant
Forum|alt.badge.img+1
  • Author
  • Participant
  • September 20, 2017

Hi @dnguye1, can you try removing the geometry with the GeometryRemover prior to write?

Thanks Tia. GeometryRemover works perfectly in this case!