File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
synapse-analytics/sql-data-warehouse Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ sections:
56
56
answer: |
57
57
Yes. You can have multiple Private Endpoints in same VNet or subnet. They can connect to different services.
58
58
59
+ - question : |
60
+ Can we link multiple private DNS zones with the same name?
61
+ answer: |
62
+ No, creating multiple zones with the same name for a single virtual network is not supported.
63
+
59
64
- question : |
60
65
Do I require a dedicated subnet for Private Endpoints?
61
66
answer: |
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ SELECT
126
126
, MAX (CASE WHEN rg.[State] = 3 THEN rg.[total_rows] ELSE NULL END) AS [COMPRESSED_rowgroup_rows_MAX]
127
127
, AVG (CASE WHEN rg.[State] = 3 THEN rg.[total_rows] ELSE NULL END) AS [COMPRESSED_rowgroup_rows_AVG]
128
128
, ' ALTER INDEX ALL ON ' + s .name + ' .' + t .NAME + ' REBUILD;' AS [Rebuild_Index_SQL]
129
- FROM sys.[sys . dm_pdw_nodes_db_column_store_row_group_physical_stats ] rg
129
+ FROM sys.[dm_pdw_nodes_db_column_store_row_group_physical_stats] rg
130
130
JOIN sys.[pdw_nodes_tables] nt ON rg.[object_id] = nt.[object_id]
131
131
AND rg.[pdw_node_id] = nt.[pdw_node_id]
132
132
AND rg.[distribution_id] = nt.[distribution_id]
You can’t perform that action at this time.
0 commit comments