|
BLOG
|
https://community.esri.com/ideas/14400-pro-bring-back-the-manage-replicas-tool doesn't show "In Product Plan" yet. Hope that changes soon....
... View more
04-03-2019
12:30 PM
|
0
|
0
|
22031
|
|
POST
|
Unfortunately, ESRI decided to upgrade the Pro Online Help to only show the latest version, the day it's released, so https://desktop.arcgis.com/en/system-requirements/latest/database-requirements-sqlserver.htm# doesn't appear to be helpful in your case. However, from the 2.2 Installed Help: Microsoft SQL Server database requirements for ArcGIS Pro 2.2 Microsoft SQL Server database requirements for ArcGIS Pro 2.2 Visit Esri Support for general support information on Esri's Supported Environment Policy. Supported database versions Enterprise/Standard/Developer* editions Microsoft SQL Server 2017 (64-bit) Microsoft SQL Server 2017 for Linux (64-bit) Microsoft SQL Server 2016 (64-bit) Microsoft SQL Server 2014 (64-bit) Microsoft SQL Server 2012 SP3 (64-bit) Express editions Microsoft SQL Server 2017 (64-bit) Microsoft SQL Server 2016 (64-bit) Microsoft SQL Server 2014 (64-bit) Microsoft SQL Server 2012 SP3 (64-bit) Suggests that you're legit with 2012 SP3, so a call to Tech Support is the path forward here.
... View more
04-03-2019
08:37 AM
|
2
|
0
|
1844
|
|
POST
|
Yes, you can side load any tilepackages to Collector and S123 using iTunes (https://community.esri.com/thread/90177). Also check out https://www.esri.com/arcgis-blog/products/apps/data-management/introducing-tile-package-kreator-esri-labs/
... View more
04-02-2019
07:08 AM
|
1
|
0
|
963
|
|
POST
|
https://pro.arcgis.com/en/pro-app/tool-reference/data-management/geotagged-photos-to-points.htm https://www.esri.com/arcgis-blog/products/arcgis-enterprise/uncategorized/add-geotagged-photos-to-your-web-map/ http://www.mostlymapping.com/2011/08/tip-for-adding-geotagged-photos-to.html
... View more
03-28-2019
07:24 AM
|
1
|
1
|
1295
|
|
POST
|
https://community.esri.com/ideas/13704-arcgis-pro-tables-enter-to-go-to-next-row https://community.esri.com/ideas/12247-add-freeze-attribute-column-to-arcpro https://community.esri.com/ideas/12646-stop-the-arcgis-pro-table-view-jumping-around-when-i-calculate-attributes https://community.esri.com/ideas/14052-arcgis-pro-remember-attribute-table-location https://community.esri.com/ideas/13295-add-basic-find-functionality-to-arcgis-pro-table-view https://community.esri.com/ideas/13940-expand-docked-attribute-table-width-in-arcgis-pro However, instead of ideas (most of which appear to be in product plan), a quicker solution would be to have the Attribute Table behave as it does in ArcMap.
... View more
03-28-2019
07:21 AM
|
6
|
5
|
6333
|
|
IDEA
|
Horizontal scrolling is still broken in 2.3.....scroll left or right, all you get is column names. It works in ArcMap, what was the change? Using the arrow key is not at all efficient.
... View more
03-28-2019
05:09 AM
|
1
|
0
|
8234
|
|
BLOG
|
James Tedrick Will this be ported to ArcGIS Pro (Py 3.x)?
... View more
03-27-2019
05:45 AM
|
0
|
0
|
16084
|
|
POST
|
Sounds similar to BUG-000120808 : Unable to import domain assignments when creating a new feature class in ArcGIS Pro.
... View more
03-26-2019
11:36 AM
|
0
|
0
|
2447
|
|
POST
|
https://pro.arcgis.com/en/pro-app/get-started/arcgis-pro-system-requirements.htm Shows that IE 11 is required, which implies not optional, which implies...if you're having any issues with Pro, not having IE 11 could result in a "not supported" adjudication. Coincidentally, IE 11 has been dead for years, and as other posters have noted, data centers are being crawled and any IE 11 instances are being removed. While Pro might work with Edge, per https://pro.arcgis.com/en/pro-app/get-started/arcgis-pro-system-requirements.htm, it's not supported, and your mileage may vary. ArcMap has the same requirement, which leads to the unfortunate future in which using servers to automate some data management tasks is no longer possible due to has-dubious-utility requirement that IE be installed.
... View more
03-25-2019
05:22 AM
|
3
|
6
|
3035
|
|
POST
|
I'm not able to throw the error in same environment and workflow. Exact steps to reproduce? What type of SQL database? What version of SQL? What type of versioning? Where is the table? What kind of Join? How many records in the feature class? How many records in the table? Same error if you bring the data into a FGDB? This is probably best solved with a call to tech support.
... View more
03-22-2019
10:58 AM
|
0
|
0
|
8785
|
|
POST
|
If you start a project that is not using a common FGDB or TBX, a "default" one is created in the project folder whether you want or need it (and you generally don't). You cannot delete it. Be sure to vote on https://community.esri.com/ideas/12835
... View more
03-21-2019
06:57 AM
|
7
|
0
|
4924
|
|
POST
|
There's all sorts of ways to get email alerts from ArcGIS server (Configure email notifications—ArcGIS Monitor Administrator | ArcGIS Enterprise, https://community.esri.com/groups/survey123/blog/2017/11/30/a-simple-e-mail-notification-system-for-survey123-for-arcgis , python - Is there any way to get an email when ArcGIS Server services are stopped/down? - Geographic Information Systems… , GeoSystems Monitor Enterprise — Vestra ). This just happens to be what worked for my environment. While working on another must-get-alert-when-it-happens issue, I realized how solving one problem also solves my "I want to know when ArcGIS Server hiccups problem" as well. I have quite a large GIS server farm, and it's important to me to be able to get in front of GIS server issues before my customers encounter any stop-work issues. Creating the Powershell scripts that will harvest the events We need two scripts: System Events: Looking at System Events with the string "Arc" for the last year, I discovered that I'm interested in all of them except routine ArcGIS has started traffic: $event = get-eventlog -LogName System -Message *Arc* -newest 1 | Where-Object {$_.Message -ne "The ArcGIS Server service entered the running state."}
$PCName = $env:COMPUTERNAME
$EmailBody = $event | format-list -property * | out-string
$EmailFrom = "$PCName [email protected]"
$EmailTo = "[email protected]"
$EmailSubject = "ArcGIS Warning!!!!!!!!!!!!"
$SMTPServer = "smtp.server"
Write-host "Sending Email"
Send-MailMessage -From $EmailFrom -To $EmailTo -Subject $EmailSubject -body $EmailBody -SmtpServer $SMTPServer Save this as C:\ALERTS\ALERT_ARC_SYSTEM.ps1 Application Events:Looking at Application Events with the string "Arc" for the last year, I discovered that I'm interested in all of them except routine MsiInstaller traffic: $event = get-eventlog -LogName Application -Message *Arc* -newest 1 | Where-Object {$_.Source -notlike "MsiInstaller"}
$PCName = $env:COMPUTERNAME
$EmailBody = $event | format-list -property * | out-string
$EmailFrom = "$PCName [email protected]"
$EmailTo = "[email protected]"
$EmailSubject = "ArcGIS Warning!!!!!!!!!!!!"
$SMTPServer = "smtp.server"
Write-host "Sending Email"
Send-MailMessage -From $EmailFrom -To $EmailTo -Subject $EmailSubject -body $EmailBody -SmtpServer $SMTPServer Save this as Save this as C:\ALERTS\ALERT_ARC_APPLICATION.ps1 The flexibility here is that you can filter whatever types of Events you want to receive an email for. Using Get-EventLog properties, I'm expecting about 1-5 emails per week with the filters I'm using. Setting up Task Scheduler to monitor the event log Right-click on the Application Log and select Attach a Task To this Log When you get to Action, select the PS script you created for Application Events Finish the Basic Task Wizard then go into Task Scheduler and set things up to run as a service account, etc. Testing From an administrative PS prompt: PS C:\Windows\system32> New-EventLog –LogName System –Source "Test Arc System"
PS C:\Windows\system32> Write-EventLog –LogName System –Source "Test Arc System" –EventID 1 –Message "Test Arc System 4"
PS C:\Windows\system32> New-EventLog –LogName Application –Source "Test Arc"
PS C:\Windows\system32> Write-EventLog –LogName Application –Source "Test Arc" –EventID 1 –Message "Test Arc Application 4"
And you should see: In conclusion, there are many ways to do this, and my Powershell won't get me hired as a Powershell scripter, but this should give you some ideas on how to customize and automate how you're getting ArcGIS Server alerts. Credit: I was inspired by https://www.ryadel.com/en/event-viewer-send-notification-e-mail-messages-with-powershell/
... View more
03-20-2019
10:44 AM
|
6
|
2
|
4068
|
|
POST
|
The "Minimum" requirements are literally, the minimum required for the software to start. Once you start doing things like making a map, using GP tools, accessing hosted feature services, you will experience....the performance you are experiencing. You will find that Pro simply won't do much more than "start" on an i5. With 2.2., the "recommended" GPU RAM was 2 GB. Now it's 4 GB or more. By the time you get your new laptop ordered and set up, 2.4 will be calling for 8 GB of GPU RAM and an external oil-cooler. Only Bitcoin miners will be able to run 2.5..... Granted, most of that "requirement" is for 3D stuff. But I suspect a lot of not supported responses to folks with 2 year old video cards that don't meet the recommended GPU specs. As most organizations are on a 5 year PC replacement cycle, I don't see how it's feasible to plan for hardware purchases that will run Pro this version or next, and be able to sustain that investment to the end of 5 years. We could easily get away with a 7 year return on investment with Arc Map workstations. Troubleshooting Performance Issues in ArcGIS Pro gives good steps on seeing exactly where your performance issues are, but, you'll be disappointed to find that the output confirms what you already know.
... View more
03-18-2019
07:11 AM
|
6
|
1
|
3359
|
|
POST
|
So [OBJECTID] % 4 = 0, for example, works in SQL Management studio queries, but not in Arc or Pro 2.3.1, in def query or label query. Not sure if this is an ESRI "by design" thing.
... View more
03-14-2019
07:04 AM
|
0
|
0
|
4228
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-17-2022 12:19 PM | |
| 1 | 03-14-2019 06:24 AM | |
| 1 | 07-12-2018 09:29 AM | |
| 1 | 06-27-2019 12:08 PM | |
| 2 | 09-23-2019 11:03 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-26-2026
07:12 AM
|