POST
|
The problem in this thread concerns this bug related to Windows Server. BUG-000170720 for ArcGIS Data Store
... View more
3 weeks ago
|
0
|
0
|
109
|
POST
|
It's difficult to provide help through the forum beyond general guidance, as it's necessary to thoroughly review your specific configuration. Did you disable the antivirus during installation? Do you have enough disk space available? I usually use restoredatastore when the data store gets stuck, as mentioned, and since it recreates the folder, it doesn’t cause any issues.
... View more
3 weeks ago
|
0
|
2
|
136
|
POST
|
Given that I only conducted a test, this is not an official Esri document. What I suggested applies solely to the case of an upgrade from 10.7.1 to 11.3, where a documented bug existed in 11.3. This issue was resolved in 11.4, which allows for a proper upgrade to version 11.4. That’s all—so if you're not dealing with these specific conditions, this does not apply to your case.
... View more
3 weeks ago
|
0
|
1
|
172
|
POST
|
You can write similar code //by nicogis
using HttpClient httpClient = new HttpClient();
var serializeOptions = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
};
//generate a token with privileges (only credits) in agol
string token = "...";
string domainAGOL = "mydomainAGOL.maps.arcgis.com";
var responseCreditiTotali = await httpClient.GetAsync($"https://{domainAGOL}/sharing/rest/portals/self?f=pjson&token={token}");
if (responseCreditiTotali.IsSuccessStatusCode)
{
Credits agolCredits = JsonSerializer.Deserialize<Credits>(await responseCreditiTotali.Content.ReadAsStreamAsync(), serializeOptions);
agolCredits.AvailableCredits.Dump("Total credits");
}
public record Credits
{
public double AvailableCredits { get; set; }
}
... View more
01-09-2025
08:01 AM
|
0
|
0
|
553
|
POST
|
I have tried and you can upgrade from 11.3 to 11.4 (I had datastore relational): 1) upgrade portal and arcgis server from 11.3 to 11.4 2) rename folder arcgisdatastore (where you have last backup of relational data) in arcgisdatastore1071 3) uninstall Datastore 4) install datastore (do not create relational) 5) restore lastbackup with this command (the folder C:\arcgisdatastore must not exist) restoredatastore --store relational --target most-recent --source-loc c:\arcgisdatastore1071\backup\relational --data-dir C:\arcgisdatastore --server-url https://gisserver.domain.com:6443 --server-admin mySA --server-password mySApw
... View more
11-18-2024
01:48 AM
|
0
|
3
|
474
|
POST
|
In these cases, the quickest solution is to restore the latest data backup with empty datastore data folder. Rename arcgisdatastore to arcgisdatastoreOld C:\arcgisdatastore must be empty or non-existent Run the following command: restoredatastore --store relational --target most-recent --source-loc c:\arcgisdatastoreOld\...\backup\relational --data-dir C:\arcgisdatastore --server-url https://gisserver.domain.com:6443 --server-admin myuseradmin --server-password mypwdadmin
... View more
11-11-2024
07:45 AM
|
0
|
0
|
956
|
POST
|
In ArcGIS Pro 3.3 you can load using similar code string path = "c:\Temp\dbgt.gpkg";
var datastore = new Database(new SQLiteConnectionPath(path))
var database = _datastore as Database;
IReadOnlyList<string> tableNames = database.GetTableNames();
foreach (string tableName in tableNames)
{
QueryDescription queryDescription = database.GetQueryDescription(tableName);
TableDefinition tableDefinition = database.GetDefinition(queryDescription);
if (queryDescription.IsSpatialQuery())
{
FeatureClass b = (FeatureClass)database.OpenTable(queryDescription);
}
else
{
Table a = database.OpenTable(queryDescription);
}
... View more
06-20-2024
11:20 AM
|
1
|
1
|
897
|
POST
|
Another solution is if you have the extension Data Interoperability you can import obj in gdb with quick import.
... View more
04-22-2024
03:45 AM
|
0
|
0
|
1799
|
POST
|
see this article: How To: Restore ArcGIS Data Store (esri.com)
... View more
02-06-2024
10:18 AM
|
0
|
0
|
2801
|
POST
|
Another solution is click button 'Reset' in tab Advanced. In a computer with checked 'Use tls 1.2' there was same problem but with reset now it's OK.
... View more
06-23-2023
02:25 AM
|
0
|
1
|
5981
|
POST
|
Use model gpt_turbo_3_5 Here there is the list of model compatible for chat: Models - OpenAI API I have updated models: Release v1.1.0 · nicogis/ArcGISPro_AddIn_ChatGPT (github.com)
... View more
06-20-2023
12:09 AM
|
1
|
0
|
1381
|
POST
|
try and see System.Data.SqlClient is missing in a .NET Core project | MAKOLYTE
... View more
06-14-2023
10:01 AM
|
0
|
1
|
2873
|
POST
|
I have seen in create service property set 'true' but I don't know if it is managed this property with CDF "properties": {
"disableCaching": "true"
},
... View more
06-14-2023
09:42 AM
|
0
|
0
|
2439
|
POST
|
Here there is the documentation & samples: - Overview ArcGIS Server Custom Data Feeds
... View more
06-14-2023
02:01 AM
|
0
|
8
|
2452
|
POST
|
Here there is the documentation & samples: - Overview ArcGIS Server Custom Data Feeds
... View more
06-14-2023
02:00 AM
|
1
|
0
|
1194
|
Title | Kudos | Posted |
---|---|---|
1 | 06-20-2024 11:20 AM | |
1 | 05-25-2017 10:11 AM | |
1 | 06-20-2023 12:09 AM | |
1 | 10-14-2022 05:14 AM | |
1 | 06-14-2023 02:00 AM |
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|