Need to insert 10 lakh data in geodatabase table

510
0
09-12-2012 01:35 AM
ilankumaranm
New Contributor
Which is the best way to insert 10lakh records in geodatabase table.
 
  IFeatureBuffer featureBuffer = iFeatureClass.CreateFeatureBuffer();
                  IFeatureCursor insertCursor = iFeatureClass.Insert(true);

{
                                 featureBuffer.set_Value(3, lstFeatures.Longitude);
          featureOID = insertCursor.InsertFeature(featureBuffer);
                       }

                       //Stop editing
                       insertCursor.Flush();


this is giving performance problem.Any way of bulk insertion
Product:
arcgis 10 desktop.
0 Kudos
0 Replies