We have a Production instance Oracle 11.1.0.6.0 / SDE 9.3.1 and an Edit instance Oracle 11.1.0.6.0 / SDE 9.3.1 running on Solaris 10. ST_GEOMETRY set as default. No versioning. We have created a database link between the two instances.
I'm thinking about this method to make nightly updates from Edit to Production.
i.e.
delete * from geo.buildings (in Production)
insert into geo.buildings (in Production) select * from geo.buildings@edit
a) I realise that I would have to generate the OBJECTID in geo.buildings (in Production) via the sequence number of geo.buildings (in Production).
b) I would not use * in my final version but list the column names.
For a simple Polygon Feature Class located in the Edit instance is it possible to transfer data to Production instance across a database link? Any issues to be aware?