I am not quite sure how to title this post, so please bear with me as I explain what is going on...
I am using ArcGIS 10.7.1 with OracleDB as our database back-end.
I have a table with approximately 310k records. I need to append records from another table but it won't let me due to an error within ArcPy which says 'Failure to Insert record' which leads to an error within OracleDB to throw 'ORA 000001 Unique Constraint 'SDE.R78_ROWID_UK' Violated'.
I know that the issue is being caused by duplicate 'ObjectID''s conflicting with one another, but I am not quite how to resolve said issue. I just want to be able to append the new records and assign them a new 'ObjectID'.
I had an idea to unRegister the table & then append, because I have read in ESRI documentation that registering a table to a database is what assigns the 'ObjectID' within ArcGIS geodatabases.
Am I going down the wrong rabbit hole with my thinking for dealing with this problem?