|
POST
|
Hi all How to export a FC or table to a csv file with Modelbuilder
... View more
02-28-2011
04:08 AM
|
0
|
1
|
3750
|
|
POST
|
In this case there are some invalid rows in the table http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34133
... View more
02-18-2011
03:31 AM
|
0
|
0
|
582
|
|
POST
|
Hi all, Is there a way to fix Delta Tables (Adds Table and Deletes Table), when they look in bad shape: This is the result I see when executing: Analyze, and checking "Adds" in the component to analyze Start Time: Fri Feb 18 08:19:14 2011 ERROR 999999: Error executing function. Underlying DBMS error[ORA-20000: Unable to analyze TABLE "XXXX"."A1046", insufficient privileges or does not exist ORA-06512: at "SYS.DBMS_STATS", line 13427 ORA-06512: at "SYS.DBMS_STATS", line 13457 ORA-06512: at line 1 ] Failed to execute (Analyze) And This is the resul I see when executing: Analyze, and checking "Deletes" in the component to analyze Start Time: Fri Feb 18 08:21:23 2011 ERROR 999999: Error executing function. Underlying DBMS error[ORA-20000: Unable to analyze TABLE "XXXX"."D1046", insufficient privileges or does not exist ORA-06512: at "SYS.DBMS_STATS", line 13427 ORA-06512: at "SYS.DBMS_STATS", line 13457 ORA-06512: at line 1 ] Failed to execute (Analyze).
... View more
02-18-2011
03:22 AM
|
0
|
1
|
771
|
|
POST
|
Hi all Suddenly editable layers in an instance in SDE started showing the following error message: Error reading OID from table. Reading rows has been stopped. Check that the datasource is valid. Underlying DBMS error[ORA-00942: table or view does not exists ..] I checked in the oracle side and tables are full of rows, but in ArcCatalog the feature is empty. Please help!!!
... View more
02-17-2011
04:38 PM
|
0
|
0
|
4312
|
|
POST
|
With ArcCatalog go to your file geodatabase, create a new table and them point to the MsAccess table to import the structure. Right clik and select Load --> Load Data to upload the data from access to your file geodatabase
... View more
02-17-2011
05:15 AM
|
0
|
0
|
4303
|
|
POST
|
Hi all I just installed Visaul Studio 2008 and ArcGIS Server 9.3 and I do not see anywhere the Visual Studio's New Project ArcgIs Visual studio installed templates please advise
... View more
02-14-2011
05:43 AM
|
0
|
2
|
818
|
|
POST
|
Hi all, I just created a new class using the Base Toolbar template and I do not see the ItemCount property or the Sub GetItemInfo described in the manual and samples Public Sub GetItemInfo(ByVal pos As Integer, ByVal itemDef As ESRI.ArcGIS.SystemUI.IItemDef) Implements ESRI.ArcGIS.SystemUI.IToolBarDef.GetItemInfo How do I add this missing property? is there any key shorcut or snippet?
... View more
02-09-2011
10:23 AM
|
0
|
0
|
758
|
|
POST
|
Closing Xcode and reopening it pointed the application to the new library iOS 4.2
... View more
01-29-2011
11:47 AM
|
0
|
0
|
410
|
|
POST
|
Hi all I am getting this error message "error: There is no SDK with the name or path 'iphoneos4.0'" because my project uses iOS SDK 4.2 and not iOS SDK 4.0 I am just testing the first sample: http://help.arcgis.com/en/arcgismobile/10.0/apis/iPhone/concepts/index.html#/My_First_iOS_Application/00pw00000047000000/ Changing: - in the window Project-Edit Project Settings-Build tab-Base SDK from "iOS Device 4.0 (missing)" to "latest iOS currently 4.2" - From the menu, select Project-Edit Active Target-base SDK from "iOS Device 4.0 (missing)" to "latest iOS currently 4.2" when I rebuild the application it still shows the same error message.
... View more
01-29-2011
11:30 AM
|
0
|
1
|
511
|
|
POST
|
Hi all I am using ArcGIs 9.3 and Model Bulder. I was able to code a calculate field in VB that formats a field as follows Format("08.00.00") and converts it to "08:00:00 AM" How can I do the same thing in Python (phyton 3 or python)? Please advise!
... View more
01-14-2011
03:32 AM
|
0
|
26
|
9306
|
|
POST
|
Hi all How can I show all the records from a related table when selecting a feature from a polygon FC on the screen with the Identity button? pelase advise
... View more
12-02-2010
06:27 AM
|
0
|
1
|
633
|
|
POST
|
Do you enter that in model builder? What about fields from SDE with fully qualified names [owner].[feature class].[field] how do you use the replace in this case?
... View more
12-01-2010
04:24 PM
|
0
|
0
|
930
|
|
POST
|
Hi all I am trying to remove spaces from a string using model builder in ArcCatalog and I wrote the following in the Calculate Field, field experssion: !W.TCIS_GIS.PREM_TYPE!.strip() It shows the following error message: Executing (Calculate Field): CalculateField PremisePoints_Layer PremisePoints.PREMTYPE " !WASD.TCIS_GIS.PREM_TYPE!.strip() " PYTHON # PremisePoints_Layer Start Time: Wed Dec 01 15:37:55 2010 ERROR 000539: Error running expression: "TWNHOUSE".strip() <type 'exceptions.IndentationError'>: unexpected indent (<string>, line 1) Item not found in this collection. Failed to execute (Calculate Field). End Time: Wed Dec 01 15:38:00 2010 (Elapsed Time: 5.00 seconds)
... View more
12-01-2010
10:43 AM
|
0
|
3
|
2708
|
|
POST
|
This query works on a personal geodatabase: SELECT GDB_ObjectClasses.ID, GDB_ObjectClasses.Name, GDB_Subtypes.ClassID, GDB_Subtypes.SubtypeCode, GDB_Subtypes.SubtypeName FROM GDB_ObjectClasses INNER JOIN GDB_Subtypes ON GDB_ObjectClasses.ID = GDB_Subtypes.ClassID; Syntax in SDe: SELECT [Owner].GDB_OBJECTCLASSES.ID, [Owner].GDB_OBJECTCLASSES.OWNER, [Owner].GDB_OBJECTCLASSES.NAME, [Owner].GDB_SUBTYPES.CLASSID, [Owner].GDB_SUBTYPES.SUBTYPECODE, [Owner].GDB_SUBTYPES.SUBTYPENAME FROM [Owner].GDB_OBJECTCLASSES INNER JOIN [Owner].GDB_SUBTYPES ON [Owner].GDB_OBJECTCLASSES.ID = [Owner].GDB_SUBTYPES.CLASSID
... View more
11-24-2010
08:40 AM
|
0
|
0
|
575
|
| 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
|