Tagged Questions
4
votes
2answers
854 views
Adding data from a SQL Server Spatial database to ArcMap or ArcEngine application with ArcObjects for better performance
I have an ArcSDE geodatabase stored in MS SQL Server 2008 R2. The datasets in this geodatabase range from 10 record to 7 million records and there is a mixture of tables and spatial datasets (SQL ...
5
votes
1answer
690 views
How to persist a polygon to SQL Server database and vice versa?
How do I extract all the points from a Polygon drawn in ArcMAP and then persist that data into a SQLServer database table containing a geometry column and then when I've got the data persisted read ...
2
votes
1answer
448 views
How to insert DateTime null using IRowBuffer
I am using IRowBuffer/IFeatureBuffer to insert fields to SQL Server 2008 DB.
When inserting a field I am using:
public void SetValue(IRowBuffer buffer, string field, object value)
{
int ...
1
vote
2answers
398 views
Access Feature Classes on Multiple Database Schemas with ArcSDE
I am using ArcObjects to access a GeoDatabase that was set up with ArcSDE 10 and SQL Server 2008 R2. In this particular case, I have some tables set up on alternate schemas (this is to replicate a ...
4
votes
2answers
809 views
Get Database Table Name From Layer Name in ArcObjects
I am using ArcObjects v10.0 with a SQL Server 2008 database. Given the name of a Layer, is there a way for me to extract the corresponding name of the database table that represents that Layer?
The ...