Skip to content

Commit 83584cc

Browse files
authored
Merge pull request #20956 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 94a1c38 + 98bc3fe commit 83584cc

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

docs/database-engine/availability-groups/windows/add-ip-address-dialog-box-sql-server-management-studio.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ ms.author: mathoma
4242
Click to create add the subnet whose address you selected, along with the static IP address that you specified. A row containing these values will be added to the subnet grid of the **New Availability Group Listener** or **Specify Replicas** dialog box.
4343

4444
> [!IMPORTANT]
45-
> The **Add IP Address** dialog does not verify the IP address. Also the dialog does not prevent you from adding the second subnet address for a subnet that you have already added to the availability group listener.
45+
> The **Add IP Address** dialog doesn't verify the IP address. Also, the dialog doesn't prevent you from adding the second subnet address for a subnet that you already added to the availability group listener.
46+
>
47+
> You must restart the listener resource for this change to take effect.
4648
4749
**Cancel**
4850
Click to cancel your selections, and return to the **New Availability Group Listener** dialog box or **Listener** tab without adding a static IP address for any subnet.

docs/ssdt/walkthrough-extend-database-project-build-to-generate-model-statistics.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,11 +474,14 @@ You can do this in one of two ways:
474474
- You can manually modify the .sqlproj file to add the required arguments. You might choose to do this if you do not intend to reuse the build contributor across a large number of projects. If you choose this option, add the following statements to the .sqlproj file after the first Import node in the file
475475

476476
```
477-
/// <PropertyGroup>
478-
/// <ContributorArguments Condition="'$(Configuration)' == 'Debug'">
479-
/// $(ContributorArguments);ModelStatistics.GenerateModelStatistics=true;ModelStatistics.SortModelStatisticsBy="name";
480-
/// </ContributorArguments>
481-
/// <PropertyGroup>
477+
<PropertyGroup>
478+
<BuildContributors>
479+
$(BuildContributors);ExampleContributors.ModelStatistics
480+
</BuildContributors>
481+
<ContributorArguments Condition="'$(Configuration)' == 'Debug'">
482+
$(ContributorArguments);ModelStatistics.GenerateModelStatistics=true;ModelStatistics.SortModelStatisticsBy=name;
483+
</ContributorArguments>
484+
</PropertyGroup>
482485

483486
```
484487

0 commit comments

Comments
 (0)