<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1588599#M93349</link>
    <description>&lt;P&gt;Thanks for posting the solution. There is a pending enhancement request; feel free to review and kudo to upvote:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/sql-databases-with-names-longer-than-31-characters/idi-p/921287" target="_self"&gt;SQL databases with names longer than 31 characters&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 16:35:38 GMT</pubDate>
    <dc:creator>AyanPalit</dc:creator>
    <dc:date>2025-02-24T16:35:38Z</dc:date>
    <item>
      <title>ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587357#M93219</link>
      <description>&lt;P&gt;Hi Esri community,&lt;/P&gt;&lt;P&gt;We are about to move on-prem SQL DB to Azure SQL Server. I had an empty SQL database created on the Azure SQL server instance, which can be connected from my local Azure Data Studio/VS Code. With the exact same settings, however, I can't connect from a database connection in ArcGIS Pro, v3.3.1.&lt;/P&gt;&lt;P&gt;Here are the connection settings in VSCode, working all good.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Code_0oALVBJvJQ.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125854i720C32BE0FC3FB63/image-size/large?v=v2&amp;amp;px=999" role="button" title="Code_0oALVBJvJQ.png" alt="Code_0oALVBJvJQ.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Here are the DB connection settings in ArcGIS Pro, which failed to connect with an error "Invalid column name".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hua_0-1740018568052.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125855i6E628EAA25C0D99B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Hua_0-1740018568052.png" alt="Hua_0-1740018568052.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Extra notes:&lt;/P&gt;&lt;P&gt;1. Was suspecting the dash character in the instance and database name, but didn't find any evidence from official source of documentation.&lt;/P&gt;&lt;P&gt;2. Tried other settings as well e.g. Port=1433, or change Yes to yes/true/True etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. What made me think is that VSCode can connect successfully, but ArcGIS Pro can't do it with the exact same parameters from the same environment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Was there any syntax error in my config? Much appreciated if someone can shed some light on it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hua&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 02:39:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587357#M93219</guid>
      <dc:creator>Hua</dc:creator>
      <dc:date>2025-02-20T02:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587525#M93224</link>
      <description>&lt;P&gt;Have you tried with Encrypt=no? Previous to ArcGIS Pro 3.2 and ODBC 17.09 the default for this was no or false. With the upgrade to ArcGIS Pro 3.3 and ODBC 17.10 and higher the default is now yes or true. Also if you have a connecting string stored in a config file or settings check other attributes since there names may have changed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, old connection string to SQL:&lt;/P&gt;&lt;P&gt;Data Source=&amp;lt;server name&amp;gt;;Initial Catalog=&amp;lt;database name&amp;gt; Security Info=True;User ID=&amp;lt;user_id&amp;gt;;Password=&amp;lt;password&amp;gt;;TrustServerCertificate=true&amp;lt;/Value&amp;gt;&lt;BR /&gt;&amp;lt;/Setting&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Format:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Server=&amp;lt;server_name&amp;gt;;Database=&amp;lt;db_name&amp;gt;;PersistSecurityInfo=true;UID=&amp;lt;user_id&amp;gt;;Password=&amp;lt;password&amp;gt;;TrustServerCertificate=true;&lt;STRONG&gt;Encrypt=false&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 16:37:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587525#M93224</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2025-02-20T16:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587534#M93225</link>
      <description>&lt;P&gt;Also, I've never seen Encrypt=Mandatory as shown in your top photo. This would imply that you have Trusted Certificates installed on all servers. Can you change that to yes or no?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 16:43:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587534#M93225</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2025-02-20T16:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587689#M93256</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2978"&gt;@RichardDaniels&lt;/a&gt;&amp;nbsp; - Thanks&amp;nbsp;for your reply. After more research, it was the database name exceeding the max number of characters (31) that ArcGIS can support.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/databases/connect-sqlserver.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/databases/connect-sqlserver.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hua_0-1740084273086.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/125915iEDF0E0650E36AE3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Hua_0-1740084273086.png" alt="Hua_0-1740084273086.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 20:45:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587689#M93256</guid>
      <dc:creator>Hua</dc:creator>
      <dc:date>2025-02-20T20:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587712#M93258</link>
      <description>&lt;P&gt;That is a new limitation for me :-). good find.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 21:46:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1587712#M93258</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2025-02-20T21:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 3.3.1 - Issue with Azure SQL DB Connection</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1588599#M93349</link>
      <description>&lt;P&gt;Thanks for posting the solution. There is a pending enhancement request; feel free to review and kudo to upvote:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/sql-databases-with-names-longer-than-31-characters/idi-p/921287" target="_self"&gt;SQL databases with names longer than 31 characters&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 16:35:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-3-1-issue-with-azure-sql-db/m-p/1588599#M93349</guid>
      <dc:creator>AyanPalit</dc:creator>
      <dc:date>2025-02-24T16:35:38Z</dc:date>
    </item>
  </channel>
</rss>

