Hi,
I have a feature class that has numerous polygons with a bunch of attribute information. I also have a .csv file that contains the same info as the attribute table but is updated monthly.
I want to do two things: I want to update the values for the attribute table to reflect any changes that happened in the .csv (IE: change the "status" field from "active" to "expired). I figure I could use arcpy's update cursor for this (I only have as much experience as the "Creating Python Scripts" course offered by esri).
Second, I want to add new any new rows that are in the .csv file but are not in the attribute table so that I can draw geometry for them. I guess I would need an insert cursor for this?
Thanks!
Thanks!