Quantcast
Channel: Forums - Geodatabase & ArcSDE
Viewing all articles
Browse latest Browse all 1584

The version could not be reconciled

$
0
0
Hi All,

We are using Arc 9.3 & ArcSDE with SQL 2008. We are accessing ArcSDE feature class and trying to update the selected features attribute for the field "Oneway" which is having Domains with the following simple code

ISelection pSelection = pMap.FeatureSelection;
IEnumFeature pEnumFeature = pSelection as IEnumFeature;
IFeature pFeature = pEnumFeature.Next();
while (pFeature != null)
{
pFeature.set_Value(pFeature.Fields.FindField("Oneway"), "FT"); //"FT" is the coded value
pFeature.Store();
pFeature = pEnumFeature.Next();
}
After making some modifications while trying to reconcile & post the data..getting error as "The version could not be reconciled. Underlying DBMS error......"

Can some one help me in this regard. Does this error occurring due to the Code or something related to SQL?
Attached Thumbnails
Click image for larger version

Name:	Error_JPG.jpg‎
Views:	N/A
Size:	28.5 KB
ID:	24758  

Viewing all articles
Browse latest Browse all 1584

Trending Articles