|
POST
|
Good question as to the "why", unfortunately I am not sure. I know that this behavior has been around for a while 15+ years I have been at this.
... View more
08-28-2025
03:23 AM
|
2
|
0
|
1503
|
|
POST
|
As I understand it, there are "auto-generated" fields by the software. If you need "true" calculations I would look at having a specific field and use this tool: https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-geometry-attributes.htm
... View more
08-27-2025
12:29 PM
|
0
|
2
|
1527
|
|
POST
|
Here is some additional information on those fields. They are system generated and maintained: https://pro.arcgis.com/en/pro-app/latest/tool-reference/appendices/geoprocessing-considerations-for-shapefile-output.htm#ESRI_SECTION1_0125A6BC969E486B9470F55825EC6C62 https://support.esri.com/en-us/knowledge-base/why-are-there-differences-in-the-shape-area-and-shape-l-000011203 So the name cannot be changed.
... View more
08-27-2025
02:49 AM
|
1
|
0
|
1610
|
|
POST
|
Take a look at this post: https://community.esri.com/t5/arcgis-enterprise-documents/report-which-services-are-using-enterprise/ta-p/1644987 I think that you should be able to get the information you need.
... View more
08-25-2025
11:37 AM
|
3
|
1
|
932
|
|
POST
|
That is unfortunate as ArcMap is being retired in early 2026.
... View more
08-22-2025
11:54 AM
|
0
|
1
|
1318
|
|
POST
|
you have update the URL to your Online one, then put your username (un), password (pw).
... View more
08-21-2025
10:37 AM
|
2
|
0
|
315
|
|
POST
|
I was referencing the license manager in 11.4 (the separate product). Did the link above help?
... View more
08-20-2025
07:12 AM
|
0
|
1
|
5280
|
|
POST
|
I would also recommend reviewing this doc: https://enterprise.arcgis.com/en/portal/latest/administer/windows/configure-arcgis-pro-licenses.htm There have been changes in the need for a separate license manager starting at 11.4 (I think).
... View more
08-20-2025
04:20 AM
|
0
|
3
|
5301
|
|
POST
|
Can you provide some more details, like: What is the ArcMap geodatabase: file / enterprise / other What is the RDBMS to be used in the Enterprise database? This will be an Enterprise Geodatabase (EGDB), correct? What is the version of ArcMap and Pro being used? Are you just copying the lines with true curves into the new EGDB?
... View more
08-18-2025
08:52 AM
|
0
|
3
|
1090
|
|
POST
|
Once you upgrade annotation to ArcGIS Pro, it cannot be edited in ArcMap (it is available for read-only): https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/upgrade-dataset.htm More information on the upgrade and potential implications: https://pro.arcgis.com/en/pro-app/latest/help/data/annotation/managing-annotation-feature-classes.htm#GUID-9035B765-7E33-47A7-854D-40E434FEB6BE Based on ArcMap's retirement in early 2026, I would recommend moving to Pro soon.
... View more
08-18-2025
07:24 AM
|
0
|
0
|
535
|
|
POST
|
Correct, you can have both Traditional and Branch versioned data in the same EGDB. Once you version (either way) a dataset, you cannot make it the other one. It is the connection files (.sde) that allows you to be Branch or Traditional for editing.
... View more
08-14-2025
07:36 AM
|
0
|
0
|
3295
|
|
POST
|
This is a tool that will report lots of information on your Enterprise Geodatabase: https://arcgismonitor.maps.arcgis.com/home/item.html?id=f343f6b2bbcf434386f6dde1e468e7ab Use the SQL below at your own risk............................... Here is some SQL that will provide size on disk. DECLARE @TblNames Table
(
COUNTER INT IDENTITY(1,1),
tbl_name nvarchar(100) NULL
)
DECLARE @TableSizes AS TABLE
(
[TblName] VARCHAR(255), [NumRows] INT,
[Reserved_Size] VARCHAR(10), [Data_Size] VARCHAR(10), [Index_Size] VARCHAR(10), [Used] VARCHAR(10)
)
DECLARE @ROWCOUNT INT
DECLARE @I INT
DECLARE @str nvarchar(100)
SET @I = 1
INSERT INTO @TblNames(tbl_name) SELECT s.NAME +'.'+t.name FROM sys.Tables t
JOIN sys.Schemas s ON s.SCHEMA_ID = t.schema_id
SET @ROWCOUNT = @@ROWCOUNT
WHILE @I <= @ROWCOUNT
BEGIN
SELECT @str = tbl_name FROM @TblNames WHERE COUNTER = @I
INSERT INTO @TableSizes
EXEC sp_spaceused @str
SET @I = @I +1
END
SELECT * FROM @TableSizes
ORDER BY numrows DESC Here is some SQL with more data than above: SELECT
t.NAME AS TableName,
s.Name AS SchemaName,
p.rows AS RowCounts,
SUM(a.total_pages) * 8 AS TotalSpaceKB,
CAST(ROUND(((SUM(a.total_pages) * 8) / 1024.00), 2) AS NUMERIC(36, 2)) AS TotalSpaceMB,
SUM(a.used_pages) * 8 AS UsedSpaceKB,
CAST(ROUND(((SUM(a.used_pages) * 8) / 1024.00), 2) AS NUMERIC(36, 2)) AS UsedSpaceMB,
(SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB,
CAST(ROUND(((SUM(a.total_pages) - SUM(a.used_pages)) * 8) / 1024.00, 2) AS NUMERIC(36, 2)) AS UnusedSpaceMB
FROM
sys.tables t
INNER JOIN
sys.indexes i ON t.OBJECT_ID = i.object_id
INNER JOIN
sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id
INNER JOIN
sys.allocation_units a ON p.partition_id = a.container_id
LEFT OUTER JOIN
sys.schemas s ON t.schema_id = s.schema_id
WHERE
t.NAME NOT LIKE 'dt%'
AND t.is_ms_shipped = 0
AND i.OBJECT_ID > 255
GROUP BY
t.Name, s.Name, p.Rows
ORDER BY
t.Name
... View more
08-14-2025
04:20 AM
|
4
|
0
|
1456
|
|
POST
|
Looks like you can do this with either of these tools: https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/split-raster.htm https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-raster-dataset.htm Look at the options for each tool.
... View more
08-05-2025
03:41 AM
|
1
|
0
|
501
|
|
POST
|
Is this machine the same one that you posted about the tile package crashing? https://community.esri.com/t5/arcgis-enterprise-portal-questions/portal-suddenly-down-in-the-middle-of-publishing/m-p/1638720
... View more
08-04-2025
03:49 AM
|
0
|
0
|
1407
|
|
POST
|
It looks like those tables / files are used by users on the Enterprise Geodatabase. I am not sure I would truncate those table, unless all connections are not active and closed.
... View more
08-04-2025
03:48 AM
|
1
|
0
|
714
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Wednesday | |
| 1 | Wednesday | |
| 2 | a week ago | |
| 1 | 3 weeks ago | |
| 1 | 06-02-2026 09:27 AM |
| Online Status |
Online
|
| Date Last Visited |
Thursday
|