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: docs/big-data-cluster/deployment-guidance.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ The following environment variables are used for security settings that are not
143
143
|**CONTROLLER_PASSWORD**| Required |The password for the cluster administrator. |
144
144
|**MSSQL_SA_PASSWORD**| Required |The password of SA user for SQL master instance. |
145
145
|**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.|
147
147
|**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.|
148
148
|**DOCKER_PASSWORD**| Optional |The password to access the above private repository. |
Copy file name to clipboardExpand all lines: docs/relational-databases/errors-events/mssqlserver-10536-database-engine-error.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,10 +24,10 @@ ms.author: mathoma
24
24
|Event Source|MSSQLSERVER|
25
25
|Component|SQLEngine|
26
26
|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.|
28
28
29
29
## 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.
31
31
32
32
## User Action
33
33
Create a plan guide for each statement in the batch or module by specifying a **statement_start_offset** value for each statement.
Copy file name to clipboardExpand all lines: docs/relational-databases/replication/administration/frequently-asked-questions-for-replication-administrators.md
- Specify that objects should not be dropped when the subscription is reinitialized. Prior to reinitialization, either:
150
150
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**.
152
152
153
153
- 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).
Copy file name to clipboardExpand all lines: docs/relational-databases/replication/administration/upgrade-replication-scripts-replication-transact-sql-programming.md
#### To view the properties of an article belonging to a snapshot or transactional publication
100
100
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.
102
102
103
103
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.
104
104
105
105
#### To modify the properties of an article belonging to a snapshot or transactional publication
106
106
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.
108
108
109
109
> [!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).
111
111
112
112
#### To view the properties of an article belonging to a merge publication
113
113
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.
115
115
116
116
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.
117
117
118
118
#### To modify the properties of an article belonging to a merge publication
119
119
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.
121
121
122
122
> [!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).
124
124
125
125
### <aname="TsqlExample"></a> Example (Transact-SQL)
126
126
This transactional replication example returns the properties of the published article.
#### To view the properties of a push subscription to a snapshot or transactional publication
60
60
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**.
62
62
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**.
64
64
65
65
#### To change the properties of a push subscription to a snapshot or transactional publication
66
66
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.
68
68
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.
70
70
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:
72
72
73
-
-**@dts_package_name**
73
+
-**\@dts_package_name**
74
74
75
-
-**@dts_package_password**
75
+
-**\@dts_package_password**
76
76
77
-
-**@dts_package_location**
77
+
-**\@dts_package_location**
78
78
79
79
This changes the DTS package properties of a subscription.
#### To view the properties of a push subscription to a merge publication
85
85
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**.
87
87
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**.
89
89
90
90
#### To change the properties of a push subscription to a merge publication
91
91
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**.
93
93
94
94
### <aname="TsqlExample"></a> Example (Transact-SQL)
- 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.
156
156
157
157
## Permissions
158
158
By default, only members of the **sysadmin** fixed server role can execute **sp_add_alert**.
0 commit comments