|
POST
|
SDE has a lot more overhead. For example if your database is versioned and you update a field with Field Calculator field calculator has to navigate the versioning tree and the delta tables to write the changes. If you have editor tracking turned on, or attribute rules, or certain logging enabled on the database server these can slow you down, as can relationships that uses messaging or a geometric network.... when did you compress last, rebuild your indexes... On the database server side, how big are your transaction logs and what level of logging are you using and are the logs fragmented, stuff like that.... There are just a lot of things that can slow you down using enterprise SDE. I guess some of these apply to a file gdb also... so no telling for sure... still 24,000% is a lot :-).
... View more
03-21-2022
05:01 PM
|
0
|
1
|
3947
|
|
POST
|
When you say it didn't work what do you mean (I.E. What message does it give you when you click which button)? Also, when you open the connection file's "connection properties"; if you don't change the username and password, can you click on the "Database" dropdown and see the name of the database you are try to connect to? Is it only when you hit "OK" that it gives the message?
... View more
03-21-2022
07:41 AM
|
0
|
1
|
4936
|
|
POST
|
Hi. You can use Arcade with the "+" syntax and the TextFormattting.NewLine constant The above gives you this: Hope this helps
... View more
03-20-2022
05:02 AM
|
1
|
1
|
944
|
|
POST
|
I liked this question because I've been looking for a reason to mess the multi-part polyline paths object for a while.... Three lines of code is easier to read, but you can do it in 1 (very bottom... in keeping with the "most succinct" theme) var pathcount = Count(Geometry($feature).paths)-1 var linepath = Geometry($feature).paths[pathcount] return Back(linepath).x +","+ Back(linepath).y In the image below the selected polyline is multipart. The blue labels are just the vertices of the lines labeled with their coordinates. The black labels are the results of the code to label the last vertex of each line. One line: return Back(Geometry($feature).paths[Count(Geometry($feature).paths)-1]).x +","+ Back(Geometry($feature).paths[Count(Geometry($feature).paths)-1]).y
... View more
03-19-2022
06:03 AM
|
1
|
0
|
1980
|
|
POST
|
Have you tried seeing if your "transf_FS" feature set has any records in it? Something like: var transf_FSCount = Count(transf_FS) if (transf_FSCount > 0){ if(IsEmpty(t.assetid)){ return domainName...and the rest of your code here . . } } I'm thinking Arcade might be returning t as a type "Feature" because the First function returns a Feature if a FeatureSet is used as input into the function... regardless of if that chunk of memory defined as t (a Feature) holds any actual data or not.
... View more
03-17-2022
08:32 PM
|
0
|
0
|
1470
|
|
POST
|
When you create a successful connection to a SQL Server instance ArcGIS Pro creates a "NameOfTheConnection.sde" file on a drive somewhere. You can use this connection to connect to the database using the "Add Database" option instead of the "New Database Connection" option. Can you reference, or copy a successful .sde file from one of the other computers that can connect, to a network drive you have access to and try that file? If it works or if it doesn't... either way its a clue to what's going on creating a new connection.
... View more
03-17-2022
07:50 PM
|
0
|
3
|
4984
|
|
POST
|
I think you want to use the "paths" property of the $feature's geometry If you look closely at the labeled line below you can see that it shows the coordinates of a "multipart" polyline. See how there are two opening and closing brackets every so often. These "[[" and "]]" brackets contain the coordinates of multiple parts of the same line. This code uses "paths" to return the first point of the first polyline part: This code uses "paths" to return the first point of the second polyline part: Unless there is a way to do it I'm unaware of, I think you will have to construct what your looks for from this structure.
... View more
03-17-2022
01:53 PM
|
1
|
0
|
703
|
|
POST
|
By the greyed out check mark next to the Colorado County Boundaries box I would say that the layer is set not the turn on at the scale you are mapping it at. Right click the layer in your table of contents and select Properties. Then go to the General Tab and see if it is set to turn of out beyond or in beyond a certain scale?
... View more
03-17-2022
12:58 PM
|
0
|
0
|
908
|
|
POST
|
I know you checked the coordinate systems, but it sure looks like a transformation problem to me (I.E. how the coordinate system of the input data (the Lots) is rendered in the map frame in Pro). Maybe your Transformations got thrown off somehow. You can check the Coordinate System of your Map by right clicking it in the TOC, selecting Properties > Coordinate System...like this: If it doesn't match the Projected Coordinate System of your input file (like in my example the data frame is WGS 84 and the TestPoly data is in NAD 83 HARN StatePlane Florida East) ArcGIS Pro uses Transformations to "Render" (probably a very poor word) the input layers into the Map frame (I think of it as adjustment on the fly - once again probably poor wording) You can check out the Transformations ArcGIS Pro is using by returning to the properties of the Map and selecting Transformations
... View more
03-17-2022
04:04 AM
|
1
|
1
|
9374
|
|
POST
|
Try incorporating a compare of the original value to the current value...Can make sure that if the RadioID isn't changed then the Install Date will not change. something like: if (IsEmpty($feature.RadioID) || $feature.RadioID == $originalfeature.RadioID){ return $feature.Radio_Install_Date } else { return Date() }
... View more
03-16-2022
11:47 AM
|
2
|
1
|
1699
|
|
POST
|
It gets confusing for sure.... Not sure why you could write the data to an older database version with a newer client (I.E. ArcGIS Pro), but you can't delete that same data using the same client software.... Sorry to be of such little help, but a support case might be warranted. The only other thing I can think of is to find another computer with an older version of ArcGIS Pro on it (maybe someone who hasn't upgraded yet) and try deleting the data from that client. If you don't have an old version of Pro laying around you can uninstall your "newest" version and download an older version from my.esri.com. But that is a hassle because it takes a bunch of time to uninstall, download, install, test if that even solves your problem, then upgrade your newly installed old version back up to the current version. Might be worth a test though, because this might be the tip of an iceberg in that all data written to this enterprise GDB using ArcGIS Pro 2.9.2. might create similar issues.
... View more
03-16-2022
11:04 AM
|
0
|
2
|
2122
|
|
POST
|
Sounds like your ArcGIS Pro version might be out of step with your geodatabase version: Client and geodatabase compatibility—ArcGIS Pro | Documentation You are wise not to delete geodatabase objects using SSMS. I would check your ArcGIS Pro version against your geodatabase version (you can use SSMS to open the SDE.SDE_Version table or query that table to see your gdb version). You could try connecting to the database using a different ArcGIS Pro version (one more compatible with your database version) and see if that helps. --------------------- P.S. I'm not suggesting you do it (but in case you infer from the above link it might be a course of action), but changing your geodatabase version isn't something I would do without thinking about it hard and planning for it with other concerned parties (I.E. What other departments might be effected, what versions of Pro does everyone in our organization use, what services might be using the database, what version of Enterprise is your organization using)...you could go from one problem to a bigger problem...Before you do anything like that back the database up and verify the backup was successful.
... View more
03-16-2022
06:45 AM
|
0
|
2
|
2211
|
|
POST
|
A few questions. 1) What is a well stick (how is the data formatted)? 2) You only want the first and last well of the section going from East to West or North to South or both (Looks like East to West)? 3) In your example the well lines (Are these the sticks?) are mostly parallel to your East and West section lines and straight. Is this typical, or can they be more unpredictable? Say running East/West or turning? 4) I see in your example that it looks like two lines are almost identical along the West edge of the section. Using the coordinates at the midpoint of the line might not give you the one you want in this case (I.E. the one that is truly closest to the section boundary. Would that matter? Would you want to return both?
... View more
03-12-2022
05:04 AM
|
0
|
0
|
781
|
|
POST
|
You didn't include the other fields you were comparing in the function definition.
... View more
03-11-2022
02:23 AM
|
2
|
0
|
1327
|
|
POST
|
Yes. It's populating the transformers array with the GlobalIDs of the individual features in the feature set fsDeviseIntersects. It uses the array later to know which transformers it is going to mark as needing calculation.
... View more
03-10-2022
02:05 AM
|
1
|
0
|
3442
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-25-2025 07:54 AM | |
| 1 | 07-25-2025 10:45 AM | |
| 1 | 05-10-2022 11:06 AM | |
| 1 | 05-09-2022 04:05 AM | |
| 1 | 03-17-2022 04:04 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-25-2025
07:47 AM
|