| 
             
                POST		  
                
             
         | 
        
        
 
					
							 You may try displaying the Pop-up images from a UNC path, if you are already updating them in a folder.  Insert a hyperlink as an image element     Some other post for reference:  Pop-up UNC Link Not Working  How do I get UNC hyperlinks stored in fields to display in ArcGIS Pro Popups?  Pop-up hyperlink to local network in Portal for ArcGIS (In case you want to view in Web Apps/Browsers) 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		12-06-2024
	
		
		09:37 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                1
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                842
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 😁Nah, all the info is from the second link directly. 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		12-06-2024
	
		
		07:22 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                889
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 In a View comes to mind immediately: Create Database View (Data Management)  Check this for more uses: SQL reference for query expressions used in ArcGIS   In ArcGIS Pro, SQL expressions can be used in the following tools and locations:   Select by attributes using the Select Layer By Attribute geoprocessing tool.  Definition Query tab on the Layer Properties dialog box.  Display filters tab in the Symbology pane.  Create reports using the Create New Reports pane.  Export tables using the Export Table geoprocessing tool.  Export features using the Export Features geoprocessing tool.  Use the Calculate Field geoprocessing tool to create an expression to perform simple or complex calculations on field values. You can also calculate multiple fields using Calculate Fields.  Use Select to query data for further analysis.  Use the Make Query Table geoprocessing tool to create a layer or table view.  Use the Table Select analysis tool to select features from an input table and write them to an output table. You can also use the Make Table View geoprocessing tool to create a view from an input table or feature class.  Use the Make Feature Layer geoprocessing tool to create a feature layer.  Use the Make Query Layer geoprocessing tool to create a query layer.  Create a view in a database or geodatabase using the Create Database View geoprocessing tool.  Use the Append geoprocessing tool to append multiple input datasets into a target dataset.  Use ProSDK Core.Data.QueryDef.      Not sure if all the above are applicable for a File gdb, but this gives you an idea. 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		12-06-2024
	
		
		07:08 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                1
             
         | 
        
             
                
                2
             
         | 
        
             
                
                    
                
                899
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 If the issue is only with a particular Feature Class, it's more likely to be a data specific issue than Tool related.  Have you tried creating a copy of the Feature Class and test with that? 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		11-21-2024
	
		
		10:51 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                1
             
         | 
        
             
                
                1
             
         | 
        
             
                
                    
                
                561
             
         | 
    
| 
             
                IDEA		  
                
             
         | 
        
        
 
					
							 @Bud Looks like the Esri Support App allows you to subscribe to Bugs even with a public account (not linked to Organization). 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		09-25-2024
	
		
		11:28 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                830
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Are you able to connect to other PostgreSQL databases? The documentation doesn't mention any restrictions w.r.t the database name, other than it should be in lowercase.  Not really a Python expert, but I tried creating a simple connection and copy the associated code. See if this helps:     arcpy.management.CreateDatabaseConnection(
    out_folder_path=r"C:\temp",
    out_name="test.sde",
    database_platform="POSTGRESQL",
    instance="hostname",
    account_authentication="DATABASE_AUTH",
    username="username",
    password="password",
    save_user_pass="SAVE_USERNAME",
    database="database_name",
    schema="",
    version_type="TRANSACTIONAL",
    version="",
    date=None,
    auth_type="",
    project_id="",
    default_dataset="",
    refresh_token=None,
    key_file=None,
    role="",
    warehouse="",
    advanced_options=""
)    
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		09-25-2024
	
		
		06:04 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                720
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Connect to Microsoft SQL Server from ArcGIS  Does the service account have access to the SQL Server instance?  From the link above:  If you use operating system authentication or Entra Integrated authentication to connect, ensure that SQL Server or Azure SQL Database can authenticate the ArcGIS Server account.    Tip:  Ensure the account used for the connection has the appropriate privileges on the data that the account needs to access. If the connection uses operating system authentication and you will publish web services using this connection, ensure that the ArcGIS Server account has the appropriate privileges on the data included in the web service. See Privileges for geodatabases in SQL Server and Privileges for using ArcGIS with a SQL Server database for more information.   
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		09-24-2024
	
		
		12:23 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                1
             
         | 
        
             
                
                    
                
                767
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Similar post: How long does it take Esri to support a new Oracle version?   The new released version of the Oracle Database is usually certified / supported on the next ArcGIS Release.  But sometimes it can take Esri a little longer to certify the new Oracle Database Version.       @GustavoMartineli12 wrote:   If I use it without ESRI approval, will it not work?     Even if you are able to use it, it won't be supported and can be unstable. So surely not worth the risk.  If you prefer, I recommend reaching out to Esri Tech Support for an official word on both. 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-29-2024
	
		
		11:55 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                1
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                1232
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							   @LiveHus wrote:   To my understanding the services should be restarted with a new database instance, but unfortunately the services are still connected to the old database when we examine the database icon.     I think it's just showing you the old label for the SQL instance, however the services are actually updated. If you read the comments in the previous link I shared, it discusses the same. Check here.     Maybe as a test, stop the services for the old database and check whether the Map services are working properly or not. 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-16-2024
	
		
		02:36 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                1
             
         | 
        
             
                
                    
                
                1684
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Check if this helps:  HTTP Error 404. The requested resource is not found 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-15-2024
	
		
		10:13 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                1
             
         | 
        
             
                
                    
                
                1226
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Edits on traditional versioned data performed using SQL should only be made through versioned views.  An overview of editing versioned data using SQL    
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-15-2024
	
		
		08:36 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                0
             
         | 
        
             
                
                    
                
                904
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Check if this helps:  Update ArcGIS Server Services after SQL Server Instance Change 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-15-2024
	
		
		06:47 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                3
             
         | 
        
             
                
                    
                
                1720
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
        
 
					
							 Ok, so clearly Node v20 doesn't fix it either. Thank you for confirming this. 
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-07-2024
	
		
		09:22 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                0
             
         | 
        
             
                
                1
             
         | 
        
             
                
                    
                
                2317
             
         | 
    
| 
             
                POST		  
                
             
         | 
        
 
					
							 We are trying to configure the ArcGIS Experience Builder 1.15 Dev Edition offline and running into errors while installing npm from cache.   D:\ArcGISExperienceBuilder_1_15\server>npm install --offline  npm error code ENOTCACHED  npm error request to https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz failed: cache mode is 'only-if-cached' but no cached response is available.  npm error A complete log of this run can be found in: C:\Users\user_name\AppData\Local\npm-cache\_logs\2024-08-06T11_44_07_985Z-debug-0.log   We already have Exp Builder 1.14 running on the same server.  Node.js is version 18.20.3 (We understand that version 20 is recommended for ExpB 1.15, but I want to check if this is the cause or something else)  Found this post Solved: EB Offline installation - Esri Community however I don't really see a solution there. Is the issue highlighted in that post fixed? Is there a solution/workaround that I missed?  Any suggestions are welcome.    
						
					
					... View more
				 
			
			
			
			
				
			
			
			
			
			
			
		
			
    
	
		
		
		08-06-2024
	
		
		05:11 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		          | 
        
             
                
                1
             
         | 
        
             
                
                14
             
         | 
        
             
                
                    
                
                3008
             
         | 
    
| Title | Kudos | Posted | 
|---|---|---|
| 4 | 06-18-2025 05:53 AM | |
| 1 | 02-19-2025 02:49 AM | |
| 1 | 02-05-2025 09:56 AM | |
| 2 | 12-16-2024 11:02 PM | |
| 1 | 12-11-2024 07:41 PM | 
| Online Status | 
					
			 
	
			
					Offline
				
		
 
		
				 | 
			
| Date Last Visited | 
					
			 
				
    
	
		
		
			Friday
		
	
	
	
	
	
	
	
	
	
	
	
	
	
			 
		
				 |