Skip to content

Commit c8a05c9

Browse files
authored
Added multi-line text column support
Added multi-line text column support and added the powershell test-connection port testing method.
1 parent 4ec3a8d commit c8a05c9

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

powerapps-docs/developer/data-platform/dataverse-sql-query.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ You can use the **Analyze in Power BI** option (**Data** > **Tables** > **Analyz
7575

7676
Any operation that attempts to modify data (that is, INSERT, UPDATE) will not work with this read-only SQL data connection. For a detailed list of supported SQL operations on the Dataverse endpoint, see [How Dataverse SQL differs from Transact-SQL](how-dataverse-sql-differs-from-transact-sql.md).
7777

78-
The following Dataverse datatypes are not supported with the SQL connection: `binary`, `image`,
79-
`ntext`, `sql_variant`, `varbinary`, `virtual`, `HierarchyId`, `managedproperty`, `file`, `xml`, `partylist`, `timestamp`, `choices`.
78+
The following Dataverse datatypes are not supported with the SQL connection: `binary`, `image`, `sql_variant`, `varbinary`, `virtual`, `HierarchyId`, `managedproperty`, `file`, `xml`, `partylist`, `timestamp`, `choices`.
8079

8180
> [!TIP]
8281
> `partylist` attributes can instead be queried by joining to the `activityparty` table as shown below.
@@ -100,6 +99,8 @@ Dataverse choice columns are represented as \<choice\>Name and \<choice\>Label i
10099
101100
There is an 80-MB maximum size limit for query results returned from the Dataverse endpoint. Consider using data integration tools such as [Azure Synapse Link for Dataverse](../../maker/data-platform/export-to-data-lake.md) and [dataflows](/power-bi/transform-model/dataflows/dataflows-introduction-self-service) for large data queries that return over 80 MB of data. More information: [Importing and exporting data](../../maker/data-platform/import-export-data.md)
102101
102+
To help limit size of the return size limit, use of multi-line text columns, and choice columns.
103+
103104
Dates returned in query results are formatted as Universal Time Coordinated (UTC). Previously, dates were returned in local time.
104105
105106
Querying data using SQL does not trigger any plug-ins registered on the <xref:Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest> or <xref:Microsoft.Xrm.Sdk.Messages.RetrieveRequest> messages. Any rewriting of the query or results that would normally be performed by such a plug-in will therefore not take effect for a SQL query.
@@ -141,9 +142,16 @@ A blocked port error may look something like the following.
141142
142143
![Error message.](media/TDS-SQL-blocked-port-error.png)
143144
144-
The solution is to verify the TCP ports 1433 or 5558 from the client are unblocked. One possible method to do that is described below.
145+
The solution is to verify the TCP ports 1433 or 5558 from the client are unblocked. Use one of the following methods to do that is described below.
146+
147+
#### Use PowerShell to validate connection with TDS endpoint
148+
149+
1. Open a PowerShell command window.
150+
2. Run the Test-connection command. <br> `Test-NetConnection -ComputerName <environment>.crm.dynamics.com -port 1433`
151+
152+
If the connection is successful a line "TcpTestSucceeded : True" will be returned.
145153
146-
#### Establish a telnet session to the TDS service listener
154+
#### Establish a telnet session to the TDS endpoint
147155
148156
1. On a Microsoft Windows computer, install/enable telnet.
149157
1. Choose **Start**.

0 commit comments

Comments
 (0)