|
POST
|
Hi Is it possible to get the IP address for ArcGIS online users using "ArcGIS API for Python"? I have wrote a script that saves the user names / and Last login date to a database. I am thinking about adding a third column for the IP address, is that possible to be done ? Thanks a lot, Ahmad
... View more
03-26-2018
12:10 PM
|
0
|
0
|
621
|
|
POST
|
Asrujit, You Are A Hero! I have granted the SYSADMIN server role to the SDE login, I thought this would be better, more permissions means more power to the user ! which is not. After removing the sysadmin role everything back to normal. Thanks a lot
... View more
03-26-2018
05:50 AM
|
2
|
0
|
4403
|
|
POST
|
When right-clicking a feature class in an ArcSDE geodatabase from ArcGIS Desktop, the 'Privileges', ‘Register As Version’ commands are grayed out even though the user is connected as the data owner, and (Advanced) ArcGIS Desktop license is being used. In my case the data owner is the ‘SDE’ user, I restored this database from the backup to a new SQL server instance on a test machine, The SDE user is able to connect to the database and view the feature classes, now I am trying to assign privileges to users and register the feature classes as versioned and I found out that the Privileges, Register as Version commands are grayed out! I made sure that I am using the SDE user who owns the data and an Advanced license of ArcMAP 10.5.0 https://support.esri.com/en/technical-article/000009946 I tried to use change privileges (data management) tool but I got this error! ERROR 999999: Error executing function. DBMS table not found [42000:[Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Cannot find the object 'CanLocations_evw', because it does not exist or you do not have permission.] Failed to execute (ChangePrivileges). I checked the view in the database in its there! What might be the issue here! Thanks in advance Ahmad
... View more
03-23-2018
01:42 PM
|
0
|
5
|
5796
|
|
POST
|
I reached out esri support and it seems that its a bug in 10.5.0 & 10.5.1 BUG-000110678 Synopsis:The error '000260' is returned when copying workspaces between machines in the same network. This will be fixed in ArcMap10.6.1
... View more
03-22-2018
05:48 AM
|
3
|
1
|
7089
|
|
POST
|
Thanks Tina for your input, I tried your solution, The tool worked with me even if I have parenthesis in the name! (in local drive) I also did one more test, I tired to use the tool to save on a network folder that doesn't have any parenthesis in its name and I got the same error ERROR 000260: Failed to copy D:\T\New File Geodatabase (4).gdb into Z:\GIS\GIS.gdb Failed to execute (Copy). Thanks alot
... View more
03-21-2018
06:21 AM
|
1
|
0
|
7089
|
|
POST
|
Hello, I am trying to use the tool "Copy (Data Management)" from ArcMAP 10.5.0 to copy a Geodatabase from local drive (D:) to a network drive (Z:). and every time I got the following error: ERROR 000260: Failed to copy D:\T\New File Geodatabase (4).gdb into Z:\2)GIS_and_Design\7)CrescentLink\CrescentLink_Users\Ahmad_Saleh\Ahmad_Saleh.gdb Failed to execute (Copy). But the unusual thing is when I go to the destination folder I am able to located this Geodatabase and also I can connect to it and see or edit the data inside, everything looks normal!. The tool worked and copied the GDB to this location but it also throw the previous error!. PS: I have full read/write permission on this network folder, which mean that the tool has the full permission to write at this folder!. The same tool works fine if I used it to copy from Local to Local folders, and fails if tried to copy from Network to Network Folder!. Have anyone had this issue before ? Thanks,
... View more
03-20-2018
10:37 AM
|
2
|
14
|
10571
|
|
POST
|
Hello, I am trying to write a regular expression in table checks that will only allow 10 characters or Less in a field otherwise the value should be reported as an error. For Example: abcDefghh1 value is ok abcDef value is ok abcDefghh1hh value is not ok What I have so far looks like this: \a{0,10} or Unfortunately this is not working since data reviewer doesn't handle {} "Curly brackets" so what other options I might have? I mean How to set a regular expression that returns the unmatched values if the characters exceeded a certain length. Thank you, Ahmad
... View more
03-14-2018
08:52 AM
|
0
|
0
|
1237
|
|
POST
|
Thanks Vince Angelo and Ted Kowal Actually there is no a reason for linking documentation of a retired release of ArcGIS. I was trying to define some Stored Procedures in the SQL server and let the users call them from the Arcmap (mainly from the Query builder window) , instead of writing very long query's ( 10 lines ) the user can pass the Procedure name - I believe this will reduce the errors and the traffic over the network. Ted, I am using stored procedures for read only purposes, in my case I prefer SP than the normal database views since they are more flexible than the views ( the User can pass a parameter when he calls the SP). So my only solution right now it to write python tool that can call these procedures to Arcmap! Thanks for your help, Ahmad
... View more
02-26-2018
12:04 PM
|
0
|
2
|
4515
|
|
POST
|
Hi all, I wounder if there is a method to call SQL Stored Procedures from the ArcMAP? I can use python "execute(sql_statement)" to do this but I am looking for other methods if there is ? Thank you, Ahmad
... View more
02-21-2018
07:20 AM
|
1
|
6
|
6411
|
|
POST
|
Since Raifq didnt't mention how to solve the concatenation error (TypeError: unsupported operand type(s) for +: 'FieldInfo' and 'unicode') I am adding the full correct answer just for future documentation: keepFieldList =['OBJECTID','f1','f2','f3']
Trees='D:/Test/1/x.gdb/Trees'
fieldList = arcpy.ListFields(Trees)
for field in fieldList:
if field.name in keepFieldList:
fieldInfo = fieldInfo + field.name + " " + field.name + " VISIBLE;"
else:
fieldInfo = str(fieldInfo) + str(field.name) + " " + str(field.name) + " HIDDEN;" - change the field names to str - add space before visible and hidden. Thanks,
... View more
02-12-2018
01:41 PM
|
1
|
0
|
3962
|
|
POST
|
Thank you Robert for the prompt replay, I wonder if you are familiar with the CMV viewer, it seems that same as the WAB it even uses the widgets used by the WAB, there is a widget there called export (here is a live site for the export widget http://tmcgee.github.io/cmv-widgets/demo.html?config=table ). it allows the user to export the attribute table results to a KMZ! I was thinking to integrate this part to your widget since the CMV is an open source and I can copy the code behind the export widget to the search widget. Thanks again, Ahmad
... View more
01-30-2018
09:30 AM
|
1
|
0
|
628
|
|
POST
|
Hi All I am wondering if the eSearch custom widget can be configured to export the results as KMZ file? I have enabled export to Json, geojson export, but also I am looking forward to have a KMZ export, is there any chunk of code that I can add to the widget to get this done? Robert Scheitlin, GISP I am tagging you since you are the developer of this widget and I wanted to hear your thoughts about this. Thanks Ahmad
... View more
01-30-2018
09:13 AM
|
0
|
2
|
792
|
|
POST
|
-version is the Enterprise Geodatabase: 10.4.1 -Error messages are being encountered? No error messages, the Data is not showing in the Database (cant view from the catalog) -Authentication type is being used? the Problem happens only when I am using OS authentication, I can view the data using DB authentication but with performance issue (very slow ). -Any other users able to connect with no issues using 10.6? I upgraded 2 machines only with the same issue.
... View more
01-22-2018
06:55 AM
|
0
|
2
|
476
|
|
POST
|
Hey George, SQL server version 2014, and I have upgraded from ArcGIS 10.5.0 Thank you,
... View more
01-22-2018
06:44 AM
|
0
|
4
|
2180
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-15-2019 10:54 AM | |
| 3 | 01-08-2019 10:42 AM | |
| 1 | 12-03-2018 12:18 PM | |
| 1 | 08-18-2020 06:32 AM | |
| 1 | 02-21-2018 07:20 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-27-2024
05:35 PM
|