|
POST
|
Is the same error occurring on different desktop machines? Have you created the tablespaces and granted permissions to the Schema Owner prior to running the 'Create Enterprise Geodatabase' tool? Can you re-grant the below permissions and try again: GRANT EXECUTE ON dbms_pipe TO public; GRANT EXECUTE ON dbms_lock TO public; GRANT EXECUTE ON dbms_lob TO public; GRANT EXECUTE ON dbms_utility TO public; GRANT EXECUTE ON dbms_sql TO public; GRANT EXECUTE ON utl_raw TO public; Also, just for testing, grant DBA to the Schema owner and then try. You can revoke this later. Privileges for geodatabases in Oracle—Help | ArcGIS for Desktop
... View more
06-17-2015
06:55 PM
|
1
|
1
|
2262
|
|
POST
|
Diego Varela The issue that you are observing is different from what this original Post was created for. You should have posted your issue as a new Question. Looking at your issue, it seems to be a client files issue. However 10.3 Desktop should automatically have those. I am attaching a copy of the required Client files from a Desktop 10.3 installation at my end. Copy these to the Desktop>Bin folder at your end and then check if that helps. NOTE: Keep a copy of the Bin folder from your end as backup, if you are trying the above.
... View more
06-11-2015
12:47 PM
|
0
|
1
|
1105
|
|
POST
|
Mats Elfström The word 'minimum' here indicates the 'minimum supported Base version'. As you must have observed in that link, 9.1.x, 9.2.x and 9.3.x are all mentioned separately. Similarly whenever 9.4.x will be supported, it will be mentioned explicitly as well. Take a look at the below for more information on this: Supported Environment Policy - Esri Support As of now, I have no information as to when PostgreSQL 9.4.x will be supported. 10.4 probably!?
... View more
06-08-2015
08:12 AM
|
1
|
1
|
3450
|
|
POST
|
As off now, No. As dots (.) are not supported in version names----dot (.) in username will also affect the version as a whole.. The only workaround is to use an account without a dot in the user name.
... View more
06-02-2015
12:13 PM
|
0
|
1
|
1402
|
|
POST
|
NIM052137 - "The version could not be created" error encounter..
... View more
06-02-2015
11:51 AM
|
0
|
3
|
1402
|
|
POST
|
Sandra The Esri System Requirements links are provided to inform\confirm which Database Versions are supported with a particular ArcGIS Version. We never practically tested PostgreSQL 9.4.x with ArcGIS 10.3, because it is not supposed to work. So there was no point in testing an unsupported configuration. Anyway, we are glad to know that you got the PosgtreSQL 9.3.x configured and working correctly.
... View more
05-28-2015
11:10 AM
|
0
|
6
|
3450
|
|
POST
|
What issues are you facing while creating the versions using Windows Authenticated logins? Any errors? Are you facing this issue only after upgrading to ArcGIS 10.3?
... View more
05-20-2015
01:50 PM
|
0
|
1
|
2736
|
|
POST
|
I am not sure what was conveyed to you, however PostgreSQL 9.4 doesn't seem to be supported at 10.3. PostgreSQL database requirements for ArcGIS 10.3.x—Help | ArcGIS for Desktop
... View more
05-20-2015
08:07 AM
|
1
|
0
|
3450
|
|
POST
|
NIM037586 - Cannot create/delete a version containing quotes... You will have to delete the version from the database end, considering all the factors (the version having quote in it's name, a space being present just after the quotes, etc). ** Take a database backup, make sure all the edits from that version has been Reconciled\Posted and then ask the DBA to delete that version from the 'versions' table at the database end.
... View more
05-06-2015
07:18 AM
|
2
|
1
|
1744
|
|
POST
|
Mike Dunham-Wilkie You can contact Esri Tech Support and ask them to attach the NIM085661 to your customer #. This way you will be able to track the NIM from support.esri.com.
... View more
05-05-2015
09:05 AM
|
0
|
0
|
3269
|
|
POST
|
Oracle Instant Clients will no longer be available on the My Esri website for download, as it can be downloaded easily from the Oracle website as well. The file you downloaded is the correct one. Follow the instructions that Tom provided and you should be able to connect fine. Also, just in case it helps others, it is NOT necessary to use the Oracle Instant Client only. Oracle Full Clients can be used as well to connect.
... View more
04-29-2015
09:38 AM
|
1
|
0
|
6298
|
|
POST
|
Ben Grod which file did you download from that link? The link that you have provided, is for Oracle Instant Client....which doesn't have any standard setup.exe. As Tom mentioned, its a zip file which can be extracted to any location of your choosing and the path added to "Environment Variable" for using it.
... View more
04-29-2015
08:02 AM
|
1
|
2
|
6298
|
|
POST
|
What is the exact version of Oracle database being used? Was any Oracle patch installed recently? Is the issue happening while connecting with any user?
... View more
04-22-2015
06:31 AM
|
0
|
0
|
2223
|
|
POST
|
A sample script for Reconcile\Post, Delete Versions, Compress Geodatabase and then Recreate those same versions: # Import arcpy module
import arcpy, os, string
#Populate parent and child versions in the following manner('Parent':'Child', etc). DO NOT LIST DEFAULT
vTree = {'SDE.BOWS':'SDE.JIM', 'SDE.GIS':'SDE.KATIE'}
def RecPostNonDefault(workspace,log1):
for key, val in vTree.iteritems():
print "Reading {0} {1}".format(key, val)
arcpy.ReconcileVersions_management(workspace, "ALL_VERSIONS", key, val, "LOCK_ACQUIRED", "NO_ABORT", "BY_OBJECT", "FAVOR_TARGET_VERSION", "POST", "KEEP_VERSION", log1)
print "Rec and posting {0} to {1}".format(val, key)
def RecPostDefault(workspace, log2,defaultVersion):
arcpy.ClearWorkspaceCache_management()
for key, val in vTree.iteritems():
print "Reading {0} {1}".format(key, val)
arcpy.ReconcileVersions_management(workspace, "ALL_VERSIONS", defaultVersion, key, "LOCK_ACQUIRED", "NO_ABORT", "BY_OBJECT", "FAVOR_TARGET_VERSION", "POST", "KEEP_VERSION", log2)
print "Rec and posting {0} to {1}".format(key, defaultVersion)
def DeleteChildVersions(workspace):
arcpy.ClearWorkspaceCache_management()
for key, val in vTree.iteritems():
arcpy.DeleteVersion_management(workspace, val)
print "Deleted {0}".format(val)
def DeleteParentVersions(workspace):
arcpy.ClearWorkspaceCache_management()
for key, val in vTree.iteritems():
arcpy.DeleteVersion_management(workspace, key)
print "Deleted {0}".format(key)
#Compress database
def Compress(workspace,logWorkspace,log3):
arcpy.ClearWorkspaceCache_management()
outLog = open(os.path.join(logWorkspace, log3), 'w')
arcpy.Compress_management(workspace)
print ("Compressed database {0}".format(workspace))
outLog.write("Compressed database {0}".format(workspace))
outLog.close()
def RecreateVersions(workspace, defaultVersion):
for key, val in vTree.iteritems():
arcpy.CreateVersion_management(workspace,defaultVersion, key[4:], "PUBLIC")
print "Created version {0}".format(key)
arcpy.CreateVersion_management(workspace, key, val[4:], "PUBLIC")
print "Created version {0}".format(val)
if __name__=="__main__":
workspace = r"C:\Users\asrujitse\AppData\Roaming\ESRI\Desktop10.3\ArcCatalog\gdb103_sqlserver.sde"
log1 = ""
log2 = ""
logWorkspace = r"C:\TEMP"
log3 = "compress.txt"
defaultVersion = "sde.DEFAULT"
RecPostNonDefault(workspace,log1)
RecPostDefault(workspace, log2,defaultVersion)
DeleteChildVersions(workspace)
DeleteParentVersions(workspace)
Compress(workspace,logWorkspace,log3)
RecreateVersions(workspace, defaultVersion)
... View more
04-17-2015
11:47 AM
|
1
|
7
|
4541
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-14-2015 09:19 AM | |
| 1 | 06-17-2013 11:43 AM | |
| 3 | 03-21-2014 08:24 AM | |
| 1 | 03-22-2016 03:04 PM | |
| 1 | 09-29-2015 09:47 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|