I am doing versioning of sde. I have done this using the ArcMap. I want to look at the delta tables in sql server.
In sql, I don't see the delta tables. I just see few tables named as a144.
How do I look at the delta tables?
I am doing versioning of sde. I have done this using the ArcMap. I want to look at the delta tables in sql server.
In sql, I don't see the delta tables. I just see few tables named as a144.
How do I look at the delta tables?
You're looking for the add/delete tables, most likely, which are the tables that follow the format:
Any updates to a feature are a deletion followed by an addition. The layer_id and table_name columns in edited sde_table_registry (My mistake, thanks to Jay Cummins, see his comment for a simple query) will give you an idea of how they map to your feature classes.
The deletions table just shows the rowid and the state at which it was deleted. The additions table shows everything with the state at which it was added.
There's a whole wealth of information to peruse at edndoc, this is just a very tiny slice of the pie. Here's the 9.3 arcsde developer help (not sure which one you're working on): http://edndoc.esri.com/arcsde/9.3/concepts/schemaobjects/tables/tables.htm
select registration_ID, owner,table_name from sde.table_registry order by table_nameorselect registration_ID, owner,table_name from sde_table_registry order by table_nameto get the ID for your table. – Jay Cummins May 02 '12 at 20:57