|
POST
|
Apurv Great! feel free to mark the suitable response as "correct" and close the thread.
... View more
10-12-2017
12:37 PM
|
1
|
0
|
3714
|
|
POST
|
Seems similar to :Cannot delete versions with double quote Or maybe NIM082947: Cannot modify or delete a geodatabase version create.. Also note the below: Deleting versions—ArcGIS Help | ArcGIS Desktop Only the owner or the geodatabase administrator can delete a transactional version. Anyone can delete an historical version. The geodatabase administrator in Oracle—Help | ArcGIS Desktop The geodatabase administrator account in Oracle is the account that owns the geodatabase repository. The geodatabase administrator for the master geodatabase must be named sde. So try using the SDE user to delete the Versions.
... View more
10-12-2017
09:54 AM
|
3
|
2
|
3714
|
|
POST
|
Yes, but for the Oracle Instant Client as well, you will need to either: 1) install Oracle Instant on your machine, which installs the necessary files and adds the necessary path in environment variable, OR 2) Copy the Instant Client files and manually set the path in Environment Variable. Recommendation: In case you are not sure, what to do, request help from your DBA.
... View more
10-12-2017
03:39 AM
|
1
|
0
|
2065
|
|
POST
|
Take a look at the below links for an explanation: ObjectID of an ArcSDE feature class skipping values ObjectID of an SDE feature class skipping values https://community.esri.com/groups/geodatabase?sr=search&searchId=879773e9-ca84-434f-af89-9edf3c776def&searchIndex=0
... View more
10-12-2017
01:02 AM
|
1
|
0
|
1679
|
|
POST
|
What you are using in ArcCatalog, is a SDE Service Connection or Application Server server, which uses an SDE service to connect to the Enterprise geodatabase. This I am pretty sure is not supported in ArcGIS Pro. Esri deprecated the use of SDE Command line tools and creation of new SDE Services starting from ArcGIS 10.3. So it is better if you consider migrating to Direct Connections. You will need to use Direct Connect, to connect to your Oracle geodatabase. For that, you need to configure Oracle 64-Bit client on the machine where you have installed ArcGIS Pro. Connect to a database—ArcGIS Pro | ArcGIS Desktop Database connections in ArcGIS Pro—Help | ArcGIS Desktop Connect to Oracle from ArcGIS—Help | ArcGIS Desktop
... View more
10-11-2017
08:47 AM
|
2
|
2
|
2065
|
|
POST
|
Mody Looks like it is finally here! What’s new in Insights for ArcGIS 2.1 | ArcGIS Blog Supported databases—Insights web help Use tab | ArcGIS Enterprise
... View more
10-10-2017
09:51 PM
|
1
|
1
|
1807
|
|
POST
|
Make sure the Extproc was configured correctly. I just ran a quick test and it is working fine. Connect as SDE in SQLPlus and execute the below query. If it gives you an error instead of returning a result as below, the Extproc has not been configured correctly then: SQL> select sde.ST_AsText(SDE.ST_Geometry('POINT (10 10)', 0)) from dual;
SDE.ST_ASTEXT(SDE.ST_GEOMETRY('POINT(1010)',0))
--------------------------------------------------------------------------------
POINT ( 10.00000000 10.00000000) https://community.esri.com/community/gis/managing-data?sr=search&searchId=f8869f23-d604-4c6c-8ccc-7f8fdb05ba21&searchIndex=0
... View more
10-09-2017
10:35 PM
|
1
|
4
|
3075
|
|
POST
|
There are some tasks in an Enterprise geodatabase, which can only be performed using the Data Owner, such as: Changing the Schema of the data Registering\Unregistering the data as Versioned Granting privileges on that Data to other users in the geodatabase Deleting the data, etc Even though the 'sysadmin' is supposed to have the highest possible permissions on that SQL Server instance, it still cannot be used to perform the above tasks. So in your case, if the data is owned by UserA (i.e DPI\UserA), then you will have to connect using the same DPI\UserA Windows login to delete the data. There are no other options.
... View more
10-08-2017
10:43 PM
|
1
|
0
|
2077
|
|
POST
|
One of our Utility clients has just upgraded everything from 9.2 to 10.2.1 (9.2 => 10 => 10.2.1 UTUP7). They use Ericsson Network Engineer(ENE), which was also upgraded from 5.x to 7.2.1, as that is supposed to be supported for ArcGIS 10.2.1. The underlying Oracle database was also upgraded from 10.2.0.3 to 11.2.0.4 in the process. All this is being done on new servers. The enterprise geodatabase upgrade and the ENE schema upgrade were completed successfully. However, now they are unable to edit existing data or create new features. The below error is received while trying to create a new feature: The error mentions IAnnoClass Interface, which I am not familiar with and seems to be SDK related. This is what I found from a quick search: IAnnoClass Interface http://help.arcgis.com/EN/sdk/10.0/Java_AO_ADF/api/arcobjects/com/esri/arcgis/carto/IAnnoClass.html If anyone has seen this error or can help me in understanding what this error could indicate, that would surely help. I do plan on checking this with Esri Tech Support, if I don't get any suggestions here. Let me know if I can provide any more details which may help. This was setup quite some time back, and never documented properly, so even the client is not able to provide any initial configuration details. Managing Data Geodatabase ArcObjects SDK ArcObjects.NEThttps://community.esri.com/groups/technical-support?sr=search&searchId=faa18bb9-e7cb-4312-ad67-6695d77f701b&searchIndex=0
... View more
10-08-2017
10:40 AM
|
0
|
0
|
736
|
|
POST
|
Check this The geodatabase administrator in SQL Server—Help | ArcGIS Desktop and the other link I provided earlier - A comparison of geodatabase owners in SQL Server—Help | ArcGIS Desktop In Microsoft SQL Server, the geodatabase administrator can be either a user named sde or a login that is mapped to the dbo user in the database that contains the geodatabase. So if you temporarily grant sysadmin and then revoke after the GDB is created, then your login will be just another login.
... View more
10-07-2017
09:23 PM
|
3
|
1
|
5879
|
|
POST
|
Privileges for geodatabases in SQL Server—Help | ArcGIS Desktop Grant 'sysadmin' to your OS Authenticated login and execute the tool. Even though you have the 'DB_Owner' role, your DBA created the database, and hence you are not the actual owner for that database. A comparison of geodatabase owners in SQL Server—Help | ArcGIS Desktop Check the above link to check how a non-sysadmin login can be made DBO user for a Database. https://community.esri.com/community/gis/managing-data?sr=search&searchId=6a9454b3-db9e-45d4-a7ce-d34faa9100a9&searchIndex=0
... View more
10-07-2017
12:41 AM
|
2
|
3
|
5879
|
|
POST
|
As details of that Bug is not public, you will need to contact Esri tech Support for a status update mentioning the Bug#.
... View more
10-06-2017
07:39 AM
|
0
|
0
|
3750
|
|
POST
|
natgeo1984 Along with looking for Best Practices, it will be a good idea if you create a new Post detailing your requirements, the available applications to you, current configuration(if any). That way you will get more meaningful suggestions for your scenario.
... View more
10-04-2017
08:42 AM
|
1
|
0
|
1911
|
|
POST
|
Is the POLE feature class registered as versioned? If yes, confirm the Versioned View name from SQL Server Management Studio or in Feature Class properties in ArcCatalog.
... View more
10-04-2017
08:09 AM
|
1
|
3
|
8811
|
|
POST
|
Edit versioned data in SQL Server using SQL—Help | ArcGIS Desktop The error or you may say the Warning is due the creation of the Version named 'Poles' as there is already a Version with the same name present in the geodatabase EXEC dbo.create_version 'dbo.DEFAULT', 'Poles', 1, 1, 'This version contains data pushed from WMM to ESRI'; <name_rule> indicates whether the name specified for the version should be taken as given (2), or a unique name should be created when a duplicate name is specified (1). Even though you get that error\warning, a new Version is created in the Geodatabase. Check the screenshot below:
... View more
10-04-2017
02:11 AM
|
1
|
5
|
8811
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-12-2017 12:37 PM | |
| 4 | 06-18-2025 05:53 AM | |
| 1 | 02-19-2025 02:49 AM | |
| 1 | 02-05-2025 09:56 AM | |
| 2 | 12-16-2024 11:02 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-13-2026
06:42 AM
|