Skip to content

Commit 2e33495

Browse files
author
Carey MacDonald
committed
Merge branch 'master' into piiDetectionSkill
2 parents 0288b17 + 6405394 commit 2e33495

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

articles/cost-management-billing/costs/index.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
ms.collection: collection
1111
author: bandersmsft
1212
ms.author: banders
13-
ms.date: 01/24/2020
13+
ms.date: 01/28/2020
1414

1515
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | whats-new
1616

@@ -89,9 +89,12 @@ landingContent:
8989
- linkListType: whats-new
9090
links:
9191
- text: Monthly updates
92-
url: https://azure.microsoft.com/blog/tag/cost-management/
92+
url: https://azure.microsoft.com/blog/tag/cost-management
9393
- text: Feature updates
94-
url: https://azure.microsoft.com/updates/?product=cost-management
94+
url: https://azure.microsoft.com/updates/cost-management-features-now-available-october-2019
95+
- text: Features in development
96+
url: https://azure.microsoft.com/updates/azure-cost-management-features-in-development-october-2019
97+
9598

9699
# Card (optional)
97100
- title: Analyze and manage AWS costs

articles/cost-management-billing/reservations/reserved-instance-purchase-recommendations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: How reservation recommendations are created
3-
description: Learn how reservation recommendations are created for virtual machines.
2+
title: How Azure reservation recommendations are created
3+
description: Learn how Azure reservation recommendations are created for virtual machines.
44
author: banders
55
ms.reviewer: yashar
66
ms.service: cost-management-billing

articles/governance/policy/overview.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Overview of Azure Policy
33
description: Azure Policy is a service in Azure, that you use to create, assign and, manage policy definitions in your Azure environment.
44
ms.date: 11/25/2019
55
ms.topic: overview
6+
ms.custom: fasttrack-edit
67
---
78
# What is Azure Policy?
89

@@ -90,11 +91,11 @@ To learn more about the structures of policy definitions, review
9091
## Policy assignment
9192

9293
A policy assignment is a policy definition that has been assigned to take place within a specific
93-
scope. This scope could range from a [management group](../management-groups/overview.md) to a
94-
resource group. The term *scope* refers to all the resource groups, subscriptions, or management
95-
groups that the policy definition is assigned to. Policy assignments are inherited by all child
96-
resources. This design means that a policy applied to a resource group is also applied to resources
97-
in that resource group. However, you can exclude a subscope from the policy assignment.
94+
scope. This scope could range from a [management group](../management-groups/overview.md) to an
95+
individual resource. The term *scope* refers to all the resources, resource groups, subscriptions,
96+
or management groups that the policy definition is assigned to. Policy assignments are inherited
97+
by all child resources. This design means that a policy applied to a resource group is also applied
98+
to resources in that resource group. However, you can exclude a subscope from the policy assignment.
9899

99100
For example, at the subscription scope, you can assign a policy that prevents the creation of
100101
networking resources. You could exclude a resource group in that subscription that is intended for
@@ -155,7 +156,7 @@ Under this initiative, you would have policy definitions such as:
155156

156157
Like a policy assignment, an initiative assignment is an initiative definition assigned to a
157158
specific scope. Initiative assignments reduce the need to make several initiative definitions for
158-
each scope. This scope could also range from a management group to a resource group.
159+
each scope. This scope could also range from a management group to an individual resource.
159160

160161
Each initiative is assignable to different scopes. One initiative can be assigned to both
161162
**subscriptionA** and **subscriptionB**.
@@ -234,4 +235,4 @@ next steps:
234235

235236
- [Assign a policy definition using the portal](./assign-policy-portal.md).
236237
- [Assign a policy definition using the Azure CLI](./assign-policy-azurecli.md).
237-
- [Assign a policy definition using PowerShell](./assign-policy-powershell.md).
238+
- [Assign a policy definition using PowerShell](./assign-policy-powershell.md).

articles/sql-data-warehouse/sql-data-warehouse-develop-transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Tips for implementing transactions in Azure SQL Data Warehouse for developing so
2020
As you would expect, SQL Data Warehouse supports transactions as part of the data warehouse workload. However, to ensure the performance of SQL Data Warehouse is maintained at scale some features are limited when compared to SQL Server. This article highlights the differences and lists the others.
2121

2222
## Transaction isolation levels
23-
SQL Data Warehouse implements ACID transactions. However, the isolation level of the transactional support is limited to READ UNCOMMITTED; this level cannot be changed. If READ UNCOMMITTED is a concern, you can implement a number of coding methods to prevent dirty reads of data. The most popular methods use both CTAS and table partition switching (often known as the sliding window pattern) to prevent users from querying data that is still being prepared. Views that pre-filter the data are also a popular approach.
23+
SQL Data Warehouse implements ACID transactions. The isolation level of the transactional support is default to READ UNCOMMITTED. You can change it to READ COMMITTED SNAPSHOT ISOLATION by turning ON the READ_COMMITTED_SNAPSHOT database option for a user database when connected to the master database. Once enabled, all transactions in this database are executed under READ COMMITTED SNAPSHOT ISOLATION and setting READ UNCOMMITTED on session level will not be honored. Check [ALTER DATABASE SET options (Transact-SQL)](https://docs.microsoft.com/sql/t-sql/statements/alter-database-transact-sql-set-options?view=azure-sqldw-latest) for details.
2424

2525
## Transaction size
2626
A single data modification transaction is limited in size. The limit is applied per distribution. Therefore, the total allocation can be calculated by multiplying the limit by the distribution count. To approximate the maximum number of rows in the transaction divide the distribution cap by the total size of each row. For variable length columns, consider taking an average column length rather than using the maximum size.

0 commit comments

Comments
 (0)