|
POST
|
Hi all I am using SDE in Oracle 10G, and the account opening the table has erad and write privileges. Is it possible to edit a SDE table that is not versioned in an editing session in Arc Map? Is there any difference between the fact that the database is protected or public?
... View more
08-09-2010
10:35 AM
|
0
|
1
|
1933
|
|
POST
|
Hi all I just downloaded Arclogistics Online that has a 30 days trial offer, and I would like to know how to add an existing license. Thanks Jose
... View more
08-04-2010
04:07 AM
|
0
|
2
|
4066
|
|
POST
|
Hi all What is the simplest way to deploy a layer representation created in a feature class in development to the same feature class in production?
... View more
08-02-2010
11:15 AM
|
0
|
1
|
1118
|
|
POST
|
Hi all After running the geometric network tool it shows the following error message: Invalid Features Report Some Features Could not be added to the network
... View more
07-22-2010
07:33 AM
|
0
|
1
|
610
|
|
POST
|
Hi all Is there a way to edit ArcSDE feature classes that are not versioned? I am able to edit a feature using ArcGIS Server, but I haven't found a way to edit this same feature in ArcMap. I am thinking about a solution that will allow a user to edit polygons thought the web or directly in ArcMap
... View more
07-17-2010
05:30 AM
|
0
|
5
|
5029
|
|
POST
|
Hi all This is a question about a field that must be auto incremented in a feature class. The feature class belongs to a geodatabase based in ArcSDE and Oracle 10G. I would like to know if an Oracle Sequence can be used in a feature class when edited to have the field populated by a trigger. I saw this example and wanted to know if I can implement it: Example Number 2 ... How to create an autoincrement field in a table with a sequence ... SQLWKS> create table bob(a number , b varchar2(21)); Statement processed. First create a sequence SQLWKS> create sequence x ; Statement processed. Then create the trigger. create trigger y before insert on bob for each row when (new.a is null) begin select x.nextval into :new.a from dual; end; / http://www.databaseanswers.org/sql_scripts/ora_sequence.htm
... View more
07-17-2010
05:27 AM
|
0
|
1
|
2411
|
|
POST
|
What I need is to change the type of an existing field from Short Integer to Float.
... View more
07-15-2010
05:29 AM
|
0
|
0
|
1170
|
|
POST
|
Hi all, In a SDE Oracle 10G goedatabase is thre a way to chage the type of a field from itneger to float. I jsut tried to run a cript in oracle: alter table mytable modify ( angle number(5,2) ); commit; and it worked in oracle, but I do not see the field type modified in ArcCatalog because it shows Short integer as type, instead of float how can I change its type?
... View more
07-15-2010
04:29 AM
|
0
|
3
|
3350
|
|
POST
|
Hi all Whenever I modify a layer and the layer is in a group the following function FindLayer(ByRef pMap As ESRI.ArcGIS.Carto.IMap) does not find it. Please advice 'finish edit operation
m_pEditor.StopOperation(("Merge Network Features"))
ErrCode = 2
'refresh features
Dim pRefresh As ESRI.ArcGIS.Geodatabase.IInvalidArea
pRefresh = New ESRI.ArcGIS.Carto.InvalidArea
pRefresh.Display = m_pEditor.Display
pRefresh.Add(pNewFeature)
pRefresh.Invalidate(-2)
'select new feature
Dim pMap As ESRI.ArcGIS.Carto.IMap
pMap = m_pEditor.Map
pMap.ClearSelection()
pMap.SelectFeature(FindLayer(pMap), pNewFeature) #######DOES NOT WORK
Me.Close()
' Exit Sub
Catch ex As Exception
Debug.Print(ex.Message)
MsgBox("Error Message: " & ex.Message)
End Try
End Sub
Public Function FindLayer(ByRef pMap As ESRI.ArcGIS.Carto.IMap) As ESRI.ArcGIS.Carto.ILayer
'helper function to find a layer for a feature class
Dim i As Integer
Dim pLayer As ESRI.ArcGIS.Carto.ILayer
Dim pFeatLayer As ESRI.ArcGIS.Carto.IFeatureLayer
Try
For i = 0 To pMap.LayerCount - 1
pLayer = pMap.Layer(i)
Debug.WriteLine(player.Name)
'UPGRADE_WARNING: TypeOf has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"'
If TypeOf pLayer Is ESRI.ArcGIS.Carto.IFeatureLayer Then
pFeatLayer = pLayer
'Check if the layer is valid, ie: it's data source is valid....
'UPGRADE_WARNING: Couldn't resolve default property of object pFeatLayer.Valid. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
If pFeatLayer.Valid Then
'UPGRADE_WARNING: Couldn't resolve default property of object m_pFC.ObjectClassID. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
'UPGRADE_WARNING: Couldn't resolve default property of object pFeatLayer.FeatureClass.ObjectClassID. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
If pFeatLayer.FeatureClass.ObjectClassID = m_pFC.ObjectClassID Then
pLayer = pFeatLayer
FindLayer = pLayer
End If
End If
End If
Next i
Catch ex As Exception
Debug.Print(ex.Message)
MsgBox("Error Message: " & ex.Message)
End Try
End Function
... View more
06-21-2010
10:00 AM
|
0
|
5
|
1051
|
|
POST
|
It looks like the problem was caused by old Version created before the data was deployed that were not removed and never reconciled with SDE.DEFAULT: Esri recommended to run the following sde commands: �?� $ sdegdbrepair -o diagnose_tables -d ORACLE10G -i 5151 -u sde -p password �?� $ sdegdbrepair -o diagnose_metadata -d ORACLE10G -i 5151 -u sde -p password This article helps: http://blogs.esri.com/Dev/blogs/geodatabase/archive/2008/04/03/Five-Best-Practices-for-Maintaining-an-Enterprise-Geodatabase.aspx Point #3 n general, you should try to do the following; * Reconcile versions to the SDE.DEFAULT version as soon as you can. * Delete versions when they are no longer needed. * Avoid creating versions that will never be reconciled with SDE.DEFAULT.
... View more
06-15-2010
03:34 AM
|
0
|
0
|
885
|
|
POST
|
http://www.miner.com/support/forums/viewtopic.php?t=194&sid=a35498e23b0b1b141d7b75e50fcb376a http://forums.esri.com/Thread.asp?c=93&f=1733&t=244023&mc=1#msgid745049 Repair Connectivity: http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?id=6658&pid=6654&topicname=Repairing_geometric_network_connectivity
... View more
06-14-2010
07:36 AM
|
0
|
0
|
885
|
|
POST
|
Geometric network behavior in a versioned editing environment (pgs 30 - 36): http://support.esri.com/index.cfm?fa=knowledgebase.whitepapers.viewPaper&PID=19&MetaID=721
... View more
06-12-2010
09:08 AM
|
0
|
0
|
885
|
|
POST
|
Hi all, Environment: ArcSDE 9.3 and ArcMap 9.3 with ArcInfo licenses. After posting a SDE version to DEFAULT we are having problems editing features in new versions created from DEFAULT when editing geometric network features. It shows the error message: "Junction connected at coincident vertices avoided on edge" Is there anything specific to do when editing and managing geometric networks features in a versioned environment? Please advice
... View more
06-12-2010
09:04 AM
|
0
|
3
|
1144
|
|
POST
|
Hi all What is the equivalent in VB.net of VB6.GetItemString( 'For Next loop which iterates through the array populating colSelClasses
'This is for when I implement selecting multiple feature classes from the listbox....
For i = 0 To lstMergeFeatures.Items.Count - 1
If lstMergeFeatures.GetSelected(i) Then
strOID = VB6.GetItemString(lstMergeFeatures, i)
Exit For
End If
Next i
... View more
06-09-2010
04:15 AM
|
0
|
0
|
2724
|
|
POST
|
How can I get the .net version of this tool: http://resources.esri.com/help/9.3/ArcGISDesktop/com/samples/Editing/working_with_network_features/merge_network_features/e5a76138-37fd-48d4-95e6-8132799772df.htm We are experiencing problems with old VB6 dlls
... View more
05-28-2010
06:13 AM
|
0
|
1
|
2111
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-05-2025 04:28 AM | |
| 1 | 08-05-2025 04:33 AM | |
| 1 | 06-05-2025 11:12 AM | |
| 1 | 03-03-2025 04:33 AM | |
| 1 | 01-23-2025 06:40 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|