Skip to content

Commit 0ea19d8

Browse files
authored
Merge pull request #12127 from MicrosoftDocs/master
9/20 PM Publish
2 parents 7625f78 + f303119 commit 0ea19d8

9 files changed

Lines changed: 55 additions & 54 deletions

docs/big-data-cluster/deployment-guidance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The following environment variables are used for security settings that are not
143143
| **CONTROLLER_PASSWORD** | Required |The password for the cluster administrator. |
144144
| **MSSQL_SA_PASSWORD** | Required |The password of SA user for SQL master instance. |
145145
| **KNOX_PASSWORD** | Required |The password for Knox **root** user. Note than in a basic authentication setup only user supported for Knox is **root**.|
146-
| **ACCEPT_EULA**| Required for first use of `azdata`| Requires no value. When set as an environment variable, it applies EULA to both SQL Server and `azdata`. If not set as environment variable, you can include `--accept-eula` in the first use of `azdata` command.|
146+
| **ACCEPT_EULA**| Required for first use of `azdata`| Set to "yes". When set as an environment variable, it applies EULA to both SQL Server and `azdata`. If not set as environment variable, you can include `--accept-eula=yes` in the first use of `azdata` command.|
147147
| **DOCKER_USERNAME** | Optional | The username to access the container images in case they are stored in a private repository. See the [Offline deployments](deploy-offline.md) topic for more details on how to use a private Docker repository for big data cluster deployment.|
148148
| **DOCKER_PASSWORD** | Optional |The password to access the above private repository. |
149149

@@ -156,6 +156,7 @@ export CONTROLLER_USERNAME=admin
156156
export CONTROLLER_PASSWORD=<password>
157157
export MSSQL_SA_PASSWORD=<password>
158158
export KNOX_PASSWORD=<password>
159+
export ACCEPT_EULA=yes
159160
```
160161

161162
```PowerShell

docs/relational-databases/errors-events/mssqlserver-10536-database-engine-error.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ ms.author: mathoma
2424
|Event Source|MSSQLSERVER|
2525
|Component|SQLEngine|
2626
|Symbolic Name|PG_TOO_MANY_STMTS|
27-
|Message Text|Cannot create plan guide '%.\*ls' because the batch or module corresponding to the specified **@plan_handle** contains more than 1000 eligible statements. Create a plan guide for each statement in the batch or module by specifying a **statement_start_offset** value for each statement.|
27+
|Message Text|Cannot create plan guide '%.\*ls' because the batch or module corresponding to the specified **\@plan_handle** contains more than 1000 eligible statements. Create a plan guide for each statement in the batch or module by specifying a **statement_start_offset** value for each statement.|
2828

2929
## Explanation
30-
The batch or module corresponding to the specified **@plan_handle** contains more than 1000 eligible statements.
30+
The batch or module corresponding to the specified **\@plan_handle** contains more than 1000 eligible statements.
3131

3232
## User Action
3333
Create a plan guide for each statement in the batch or module by specifying a **statement_start_offset** value for each statement.

docs/relational-databases/replication/administration/frequently-asked-questions-for-replication-administrators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ monikerRange: "=azuresqldb-mi-current||>=sql-server-2014||=sqlallproducts-allver
148148

149149
- Specify that objects should not be dropped when the subscription is reinitialized. Prior to reinitialization, either:
150150

151-
- Execute [sp_changearticle](../../../relational-databases/system-stored-procedures/sp-changearticle-transact-sql.md) or [sp_changemergearticle](../../../relational-databases/system-stored-procedures/sp-changemergearticle-transact-sql.md). Specify a value of 'pre_creation_cmd' (**sp_changearticle**) or 'pre_creation_command' (**sp_changemergearticle**) for the parameter **@property** and a value of 'none', 'delete' or 'truncate' for the parameter **@value**.
151+
- Execute [sp_changearticle](../../../relational-databases/system-stored-procedures/sp-changearticle-transact-sql.md) or [sp_changemergearticle](../../../relational-databases/system-stored-procedures/sp-changemergearticle-transact-sql.md). Specify a value of 'pre_creation_cmd' (**sp_changearticle**) or 'pre_creation_command' (**sp_changemergearticle**) for the parameter **\@property** and a value of 'none', 'delete' or 'truncate' for the parameter **\@value**.
152152

153153
- In the **Article Properties - \<Article>** dialog box in the **Destination Object** section, select a value of **Keep existing object unchanged**, **Delete data. If article has a row filter, delete only data that matches the filter.** or **Truncate all data in the existing object** for the option **Action if name is in use**. For more information on accessing this dialog box, see [View and Modify Publication Properties](../../../relational-databases/replication/publish/view-and-modify-publication-properties.md).
154154

docs/relational-databases/replication/administration/upgrade-replication-scripts-replication-transact-sql-programming.md

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

docs/relational-databases/replication/publish/view-and-modify-article-properties.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,29 +98,29 @@ monikerRange: "=azuresqldb-mi-current||>=sql-server-2014||=sqlallproducts-allver
9898

9999
#### To view the properties of an article belonging to a snapshot or transactional publication
100100

101-
1. Execute [sp_helparticle](../../../relational-databases/system-stored-procedures/sp-helparticle-transact-sql.md), specifying the name of the publication for the **@publication** parameter and the name of the article for the **@article** parameter. If you do not specify **@article**, information will be returned for all articles in the publication.
101+
1. Execute [sp_helparticle](../../../relational-databases/system-stored-procedures/sp-helparticle-transact-sql.md), specifying the name of the publication for the **\@publication** parameter and the name of the article for the **\@article** parameter. If you do not specify **\@article**, information will be returned for all articles in the publication.
102102

103103
2. Execute [sp_helparticlecolumns](../../../relational-databases/system-stored-procedures/sp-helparticlecolumns-transact-sql.md) for table articles to list all columns available in the base table.
104104

105105
#### To modify the properties of an article belonging to a snapshot or transactional publication
106106

107-
1. Execute [sp_changearticle](../../../relational-databases/system-stored-procedures/sp-changearticle-transact-sql.md), specifying the article property being changed in the **@property** parameter and the new value of this property in the **@value** parameter.
107+
1. Execute [sp_changearticle](../../../relational-databases/system-stored-procedures/sp-changearticle-transact-sql.md), specifying the article property being changed in the **\@property** parameter and the new value of this property in the **\@value** parameter.
108108

109109
> [!NOTE]
110-
> If the change requires the generation of a new snapshot, you must also specify a value of **1** for **@force_invalidate_snapshot**, and if the change requires that Subscribers be reinitialized, you must also specify a value of **1** for **@force_reinit_subscription**. For more information on the properties that, when changed, require a new snapshot or reinitialization, see [Change Publication and Article Properties](../../../relational-databases/replication/publish/change-publication-and-article-properties.md).
110+
> If the change requires the generation of a new snapshot, you must also specify a value of **1** for **\@force_invalidate_snapshot**, and if the change requires that Subscribers be reinitialized, you must also specify a value of **1** for **\@force_reinit_subscription**. For more information on the properties that, when changed, require a new snapshot or reinitialization, see [Change Publication and Article Properties](../../../relational-databases/replication/publish/change-publication-and-article-properties.md).
111111
112112
#### To view the properties of an article belonging to a merge publication
113113

114-
1. Execute [sp_helpmergearticle](../../../relational-databases/system-stored-procedures/sp-helpmergearticle-transact-sql.md), specifying the name of the publication for the **@publication** parameter and the name of the article for the **@article** parameter. If you do not specify these parameters, information will be returned for all articles in a publication or at the publisher.
114+
1. Execute [sp_helpmergearticle](../../../relational-databases/system-stored-procedures/sp-helpmergearticle-transact-sql.md), specifying the name of the publication for the **\@publication** parameter and the name of the article for the **\@article** parameter. If you do not specify these parameters, information will be returned for all articles in a publication or at the publisher.
115115

116116
2. Execute [sp_helpmergearticlecolumn](../../../relational-databases/system-stored-procedures/sp-helpmergearticlecolumn-transact-sql.md) for table articles to list all columns available in the base table.
117117

118118
#### To modify the properties of an article belonging to a merge publication
119119

120-
1. Execute [sp_changemergearticle](../../../relational-databases/system-stored-procedures/sp-changemergearticle-transact-sql.md), specifying the article property being changed in the **@property** parameter and the new value of this property in the **@value** parameter.
120+
1. Execute [sp_changemergearticle](../../../relational-databases/system-stored-procedures/sp-changemergearticle-transact-sql.md), specifying the article property being changed in the **\@property** parameter and the new value of this property in the **\@value** parameter.
121121

122122
> [!NOTE]
123-
> If the change requires the generation of a new snapshot, you must also specify a value of **1** for **@force_invalidate_snapshot**, and if the change requires that Subscribers be reinitialized, you must also specify a value of **1** for **@force_reinit_subscription**. For more information on the properties that, when changed, require a new snapshot or reinitialization, see [Change Publication and Article Properties](../../../relational-databases/replication/publish/change-publication-and-article-properties.md).
123+
> If the change requires the generation of a new snapshot, you must also specify a value of **1** for **\@force_invalidate_snapshot**, and if the change requires that Subscribers be reinitialized, you must also specify a value of **1** for **\@force_reinit_subscription**. For more information on the properties that, when changed, require a new snapshot or reinitialization, see [Change Publication and Article Properties](../../../relational-databases/replication/publish/change-publication-and-article-properties.md).
124124
125125
### <a name="TsqlExample"></a> Example (Transact-SQL)
126126
This transactional replication example returns the properties of the published article.

docs/relational-databases/replication/view-and-modify-push-subscription-properties.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,23 @@ monikerRange: "=azuresqldb-current||>=sql-server-2014||=sqlallproducts-allversio
5858

5959
#### To view the properties of a push subscription to a snapshot or transactional publication
6060

61-
1. At the Publisher on the publication database, execute [sp_helpsubscription](../../relational-databases/system-stored-procedures/sp-helpsubscription-transact-sql.md). Specify **@publication**, **@subscriber**, and a value of **all** for **@article**.
61+
1. At the Publisher on the publication database, execute [sp_helpsubscription](../../relational-databases/system-stored-procedures/sp-helpsubscription-transact-sql.md). Specify **\@publication**, **\@subscriber**, and a value of **all** for **\@article**.
6262

63-
2. At the Publisher on the publication database, execute [sp_helpsubscriberinfo](../../relational-databases/system-stored-procedures/sp-helpsubscriberinfo-transact-sql.md), specifying **@subscriber**.
63+
2. At the Publisher on the publication database, execute [sp_helpsubscriberinfo](../../relational-databases/system-stored-procedures/sp-helpsubscriberinfo-transact-sql.md), specifying **\@subscriber**.
6464

6565
#### To change the properties of a push subscription to a snapshot or transactional publication
6666

67-
1. At the Publisher on the publication database, execute [sp_changesubscriber](../../relational-databases/system-stored-procedures/sp-changesubscriber-transact-sql.md), specifying **@subscriber** and any parameters for the Subscriber properties being changed.
67+
1. At the Publisher on the publication database, execute [sp_changesubscriber](../../relational-databases/system-stored-procedures/sp-changesubscriber-transact-sql.md), specifying **\@subscriber** and any parameters for the Subscriber properties being changed.
6868

69-
2. At the Publisher on the publication database, execute [sp_changesubscription](../../relational-databases/system-stored-procedures/sp-changesubscription-transact-sql.md). Specify **@publication**, **@subscriber**, **@destination_db**, a value of **all** for **@article**, the subscription property being changed as **@property**, and the new value as **@value**. This changes security settings for the push subscription.
69+
2. At the Publisher on the publication database, execute [sp_changesubscription](../../relational-databases/system-stored-procedures/sp-changesubscription-transact-sql.md). Specify **\@publication**, **\@subscriber**, **\@destination_db**, a value of **all** for **\@article**, the subscription property being changed as **\@property**, and the new value as **\@value**. This changes security settings for the push subscription.
7070

71-
3. (Optional) To change the Data Transformation Services (DTS) package properties of a subscription, execute [sp_changesubscriptiondtsinfo](../../relational-databases/system-stored-procedures/sp-changesubscriptiondtsinfo-transact-sql.md) at the Subscriber on the subscription database. Specify the ID of the Distribution Agent job for **@jobid** and the following DTS package properties:
71+
3. (Optional) To change the Data Transformation Services (DTS) package properties of a subscription, execute [sp_changesubscriptiondtsinfo](../../relational-databases/system-stored-procedures/sp-changesubscriptiondtsinfo-transact-sql.md) at the Subscriber on the subscription database. Specify the ID of the Distribution Agent job for **\@jobid** and the following DTS package properties:
7272

73-
- **@dts_package_name**
73+
- **\@dts_package_name**
7474

75-
- **@dts_package_password**
75+
- **\@dts_package_password**
7676

77-
- **@dts_package_location**
77+
- **\@dts_package_location**
7878

7979
This changes the DTS package properties of a subscription.
8080

@@ -83,13 +83,13 @@ monikerRange: "=azuresqldb-current||>=sql-server-2014||=sqlallproducts-allversio
8383
8484
#### To view the properties of a push subscription to a merge publication
8585

86-
1. At the Publisher on the publication database, execute [sp_helpmergesubscription](../../relational-databases/system-stored-procedures/sp-helpmergesubscription-transact-sql.md). Specify **@publication** and **@subscriber**.
86+
1. At the Publisher on the publication database, execute [sp_helpmergesubscription](../../relational-databases/system-stored-procedures/sp-helpmergesubscription-transact-sql.md). Specify **\@publication** and **\@subscriber**.
8787

88-
2. At the Publisher, execute [sp_helpsubscriberinfo](../../relational-databases/system-stored-procedures/sp-helpsubscriberinfo-transact-sql.md), specifying **@subscriber**.
88+
2. At the Publisher, execute [sp_helpsubscriberinfo](../../relational-databases/system-stored-procedures/sp-helpsubscriberinfo-transact-sql.md), specifying **\@subscriber**.
8989

9090
#### To change the properties of a push subscription to a merge publication
9191

92-
1. At the Publisher on the publication database, execute [sp_changemergesubscription](../../relational-databases/system-stored-procedures/sp-changemergesubscription-transact-sql.md). Specify **@publication**, **@subscriber**, **@subscriber_db**, the subscription property being changed as **@property**, and the new value as **@value**.
92+
1. At the Publisher on the publication database, execute [sp_changemergesubscription](../../relational-databases/system-stored-procedures/sp-changemergesubscription-transact-sql.md). Specify **\@publication**, **\@subscriber**, **\@subscriber_db**, the subscription property being changed as **\@property**, and the new value as **\@value**.
9393

9494
### <a name="TsqlExample"></a> Example (Transact-SQL)
9595

docs/relational-databases/system-stored-procedures/sp-add-alert-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ sp_add_alert [ @name = ] 'name'
152152

153153
- The alert is enabled.
154154

155-
- Events generated with **xp_logevent** occur in the master database. Therefore, **xp_logevent** does not trigger an alert unless the **@database_name** for the alert is **'master'** or NULL.
155+
- Events generated with **xp_logevent** occur in the master database. Therefore, **xp_logevent** does not trigger an alert unless the **\@database_name** for the alert is **'master'** or NULL.
156156

157157
## Permissions
158158
By default, only members of the **sysadmin** fixed server role can execute **sp_add_alert**.

0 commit comments

Comments
 (0)