You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/stream-analytics/sql-db-table.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,13 +79,13 @@ It's important to ensure that the output of your Stream Analytics job matches th
79
79
***Type mismatch**: The query and target types aren't compatible. Rows won't be inserted in the destination. Use a [conversion function](/stream-analytics-query/data-types-azure-stream-analytics) such as TRY_CAST() to align types in the query. The alternate option is to alter the destination table in your SQL database.
80
80
***Range**: The target type range is considerably smaller than the one used in the query. Rows with out-of-range values [may not be inserted](/stream-analytics-query/data-types-azure-stream-analytics) in the destination table, or truncated. Consider altering the destination column to a larger type range.
81
81
***Implicit**: The query and target types are different but compatible. The data will be implicitly converted, but this could result in data loss or failures. Use a [conversion function](/stream-analytics-query/data-types-azure-stream-analytics) such as TRY_CAST() to align types in the query, or alter the destination table.
82
-
***Record**: This type isn't yet supported for this output. The value will be replaced by the string ‘record’. Consider [parsing](/stream-analytics-query/stream-analytics-parsing-json.md) the data, or using an UDF to [convert to string](/stream-analytics-query/stream-analytics-javascript-user-defined-functions.md).
83
-
***Array**: This type isn't yet supported natively in Azure SQL Database. The value will be replaced by the string ‘record’. Consider [parsing](/stream-analytics-query/stream-analytics-parsing-json.md) the data, or using an UDF to [convert to string](/stream-analytics-query/stream-analytics-javascript-user-defined-functions.md).
82
+
***Record**: This type isn't yet supported for this output. The value will be replaced by the string ‘record’. Consider [parsing](/stream-analytics-query/stream-analytics-parsing-json.md) the data, or using an UDF to [convert to string](/azure/stream-analytics/stream-analytics-javascript-user-defined-functions).
83
+
***Array**: This type isn't yet supported natively in Azure SQL Database. The value will be replaced by the string ‘record’. Consider [parsing](/stream-analytics-query/stream-analytics-parsing-json.md) the data, or using an UDF to [convert to string](/azure/stream-analytics/stream-analytics-javascript-user-defined-functions).
84
84
***Column missing from destination table**: This column is missing from the destination table. The data won't be inserted. Add this column to your destination table if needed.
85
85
86
86
## Next steps
87
87
88
-
*[Use SQL reference data as input source](/sql-reference-data.md)
88
+
*[Use SQL reference data as input source](/azure/stream-analytics/sql-reference-data)
89
89
*[Azure Stream Analytics Query Language Reference](/stream-analytics-query/stream-analytics-query-language-reference)
90
90
*[Query examples for common Stream Analytics usage patterns](stream-analytics-stream-analytics-query-patterns.md)
91
91
*[Understand inputs for Azure Stream Analytics](stream-analytics-add-inputs.md)
0 commit comments