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: articles/analysis-services/analysis-services-async-refresh.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.reviewer: minewiskan
13
13
14
14
By using any programming language that supports REST calls, you can perform asynchronous data-refresh operations on your Azure Analysis Services tabular models. This includes synchronization of read-only replicas for query scale-out.
15
15
16
-
Data-refresh operations can take some time depending on a number of factors including data volume, level of optimization using partitions, etc. These operations have traditionally been invoked with existing methods such as using [TOM](https://docs.microsoft.com/bi-reference/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) (Tabular Object Model), [PowerShell](https://docs.microsoft.com/analysis-services/powershell/analysis-services-powershell-reference) cmdlets, or [TMSL](https://docs.microsoft.com/bi-reference/tmsl/tabular-model-scripting-language-tmsl-reference) (Tabular Model Scripting Language). However, these methods can require often unreliable, long-running HTTP connections.
16
+
Data-refresh operations can take some time depending on a number of factors including data volume, level of optimization using partitions, etc. These operations have traditionally been invoked with existing methods such as using [TOM](https://docs.microsoft.com/analysis-services/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) (Tabular Object Model), [PowerShell](https://docs.microsoft.com/analysis-services/powershell/analysis-services-powershell-reference) cmdlets, or [TMSL](https://docs.microsoft.com/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference) (Tabular Model Scripting Language). However, these methods can require often unreliable, long-running HTTP connections.
17
17
18
18
The REST API for Azure Analysis Services enables data-refresh operations to be carried out asynchronously. By using the REST API, long-running HTTP connections from client applications aren't necessary. There are also other built-in features for reliability, such as auto retries and batched commits.
19
19
@@ -94,9 +94,9 @@ Specifying parameters is not required. The default is applied.
|`Type`| Enum | The type of processing to perform. The types are aligned with the TMSL [refresh command](https://docs.microsoft.com/bi-reference/tmsl/refresh-command-tmsl) types: full, clearValues, calculate, dataOnly, automatic, and defragment. Add type is not supported. | automatic |
97
+
|`Type`| Enum | The type of processing to perform. The types are aligned with the TMSL [refresh command](https://docs.microsoft.com/analysis-services/tmsl/refresh-command-tmsl) types: full, clearValues, calculate, dataOnly, automatic, and defragment. Add type is not supported. | automatic |
98
98
|`CommitMode`| Enum | Determines if objects will be committed in batches or only when complete. Modes include: default, transactional, partialBatch. | transactional |
99
-
|`MaxParallelism`| Int | This value determines the maximum number of threads on which to run processing commands in parallel. This value aligned with the MaxParallelism property that can be set in the TMSL [Sequence command](https://docs.microsoft.com/bi-reference/tmsl/sequence-command-tmsl) or using other methods. | 10 |
99
+
|`MaxParallelism`| Int | This value determines the maximum number of threads on which to run processing commands in parallel. This value aligned with the MaxParallelism property that can be set in the TMSL [Sequence command](https://docs.microsoft.com/analysis-services/tmsl/sequence-command-tmsl) or using other methods. | 10 |
100
100
|`RetryCount`| Int | Indicates the number of times the operation will retry before failing. | 0 |
101
101
|`Objects`| Array | An array of objects to be processed. Each object includes: "table" when processing the entire table or "table" and "partition" when processing a partition. If no objects are specified, the whole model is refreshed. | Process the entire model |
Copy file name to clipboardExpand all lines: articles/analysis-services/analysis-services-database-users.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Role permissions include:
20
20
***Process** - Users can connect to and perform process operations on the database, and analyze model database data.
21
21
***Read** - Users can use a client application to connect to and analyze model database data.
22
22
23
-
When creating a tabular model project, you create roles and add users or groups to those roles by using Role Manager in Visual Studio with Analysis Services projects. When deployed to a server, you use SQL Server Management Studio (SSMS), [Analysis Services PowerShell cmdlets](https://docs.microsoft.com/analysis-services/powershell/analysis-services-powershell-reference), or [Tabular Model Scripting Language](https://docs.microsoft.com/bi-reference/tmsl/tabular-model-scripting-language-tmsl-reference) (TMSL) to add or remove roles and user members.
23
+
When creating a tabular model project, you create roles and add users or groups to those roles by using Role Manager in Visual Studio with Analysis Services projects. When deployed to a server, you use SQL Server Management Studio (SSMS), [Analysis Services PowerShell cmdlets](https://docs.microsoft.com/analysis-services/powershell/analysis-services-powershell-reference), or [Tabular Model Scripting Language](https://docs.microsoft.com/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference) (TMSL) to add or remove roles and user members.
24
24
25
25
**Security groups** must be [mail-enabled](https://docs.microsoft.com/exchange/recipients-in-exchange-online/manage-mail-enabled-security-groups) with the `MailEnabled` property set to `True`. When specifying a group by email address use `obj:groupid@tenantid`.
26
26
@@ -80,7 +80,7 @@ To add roles and users to a deployed model database, you must be connected to th
80
80
81
81
## To add roles and users by using a TMSL script
82
82
83
-
You can run a TMSL script in the XMLA window in SSMS or by using PowerShell. Use the [CreateOrReplace](https://docs.microsoft.com/bi-reference/tmsl/createorreplace-command-tmsl) command and the [Roles](https://docs.microsoft.com/bi-reference/tmsl/roles-object-tmsl) object.
83
+
You can run a TMSL script in the XMLA window in SSMS or by using PowerShell. Use the [CreateOrReplace](https://docs.microsoft.com/analysis-services/tmsl/createorreplace-command-tmsl) command and the [Roles](https://docs.microsoft.com/analysis-services/tmsl/roles-object-tmsl) object.
84
84
85
85
**Sample TMSL script**
86
86
@@ -146,5 +146,5 @@ Row filters apply to the specified rows and related rows. When a table has multi
146
146
147
147
[Manage server administrators](analysis-services-server-admins.md)
148
148
[Manage Azure Analysis Services with PowerShell](analysis-services-powershell.md)
149
-
[Tabular Model Scripting Language (TMSL) Reference](https://docs.microsoft.com/bi-reference/tmsl/tabular-model-scripting-language-tmsl-reference)
149
+
[Tabular Model Scripting Language (TMSL) Reference](https://docs.microsoft.com/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference)
Copy file name to clipboardExpand all lines: articles/analysis-services/analysis-services-overview.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ Server resource management tasks like creating server resources, suspending or r
211
211
### Object model and scripting
212
212
213
213
Tabular models offer rapid development and are highly customizable.
214
-
Tabular models include the [Tabular Object Model](https://docs.microsoft.com/bi-reference/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) (TOM) to describe model objects. TOM is exposed in JSON through the [Tabular Model Scripting Language (TMSL)](https://docs.microsoft.com/bi-reference/tmsl/tabular-model-scripting-language-tmsl-reference) and the AMO data definition language through the [Microsoft.AnalysisServices.Tabular](/dotnet/api/microsoft.analysisservices.tabular) namespace.
214
+
Tabular models include the [Tabular Object Model](https://docs.microsoft.com/analysis-services/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) (TOM) to describe model objects. TOM is exposed in JSON through the [Tabular Model Scripting Language (TMSL)](https://docs.microsoft.com/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference) and the AMO data definition language through the [Microsoft.AnalysisServices.Tabular](/dotnet/api/microsoft.analysisservices.tabular) namespace.
Copy file name to clipboardExpand all lines: articles/analysis-services/tutorials/analysis-services-tutorial-roles.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ In this task, you add a user or group account from your Azure AD to the server a
78
78
79
79
## Add a user to the model database administrator role
80
80
81
-
In this task, you add a user or group account to the Internet Sales Administrator role that already exists in the model. This role has Full control (Administrator) permissions for the adventureworks sample model database. This task uses the [CreateOrReplace](https://docs.microsoft.com/bi-reference/tmsl/createorreplace-command-tmsl) TMSL command in a script created for you.
81
+
In this task, you add a user or group account to the Internet Sales Administrator role that already exists in the model. This role has Full control (Administrator) permissions for the adventureworks sample model database. This task uses the [CreateOrReplace](https://docs.microsoft.com/analysis-services/tmsl/createorreplace-command-tmsl) TMSL command in a script created for you.
82
82
83
83
1. In **Object Explorer**, expand **Databases** > **adventureworks** > **Roles**.
84
84
2. Right-click **Internet Sales Administrator**, then click **Script Role as** > **CREATE OR REPLACE To** > **New Query Editor Window**.
@@ -94,7 +94,7 @@ In this task, you add a user or group account to the Internet Sales Administrato
94
94
95
95
## Add a new model database role and add a user or group
96
96
97
-
In this task, you use the [Create](https://docs.microsoft.com/bi-reference/tmsl/create-command-tmsl) command in a TMSL script to create a new Internet Sales Global role, specify *read* permissions for the role, and add a user or group account from your Azure AD.
97
+
In this task, you use the [Create](https://docs.microsoft.com/analysis-services/tmsl/create-command-tmsl) command in a TMSL script to create a new Internet Sales Global role, specify *read* permissions for the role, and add a user or group account from your Azure AD.
98
98
99
99
1. In **Object Explorer**, right-click **adventureworks**, and then click **New Query** > **XMLA**.
100
100
2. Copy and paste the following TMSL script into the query editor:
Copy file name to clipboardExpand all lines: articles/automation/automation-graphical-authoring-intro.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -374,7 +374,7 @@ The following example uses output from an activity called **Get Twitter Connecti
374
374
375
375
## Authenticating to Azure resources
376
376
377
-
Runbooks in Azure Automation that manage Azure resources require authentication to Azure. The [Run As account](automation-create-runas-account.md), also referred to as a service principal, is the default mechanism that an Automation runbook uses to access Azure Resource Manager resources in your subscription. You can add this functionality to a graphical runbook by adding the **AzureRunAsConnection** connection asset, which uses the PowerShell [Get-AutomationConnection](https://technet.microsoft.com/library/dn919922%28v=sc.16%29.aspx) cmdlet, to the canvas. You can also add the [Connect-AzAccount](/powershell/module/az.profile/connect-azaccount) cmdlet. This scenario is illustrated in the following example.
377
+
Runbooks in Azure Automation that manage Azure resources require authentication to Azure. The [Run As account](automation-create-runas-account.md), also referred to as a service principal, is the default mechanism that an Automation runbook uses to access Azure Resource Manager resources in your subscription. You can add this functionality to a graphical runbook by adding the **AzureRunAsConnection** connection asset, which uses the PowerShell [Get-AutomationConnection](https://technet.microsoft.com/library/dn919922%28v=sc.16%29.aspx) cmdlet, to the canvas. You can also add the [Connect-AzAccount](/powershell/module/az.accounts/connect-azaccount) cmdlet. This scenario is illustrated in the following example.
378
378
379
379

Copy file name to clipboardExpand all lines: articles/azure-functions/functions-create-first-azure-function-azure-cli.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -359,7 +359,7 @@ Run [`curl`](https://curl.haxx.se/) with the **Invoke URL**, appending the param
359
359
360
360
## Clean up resources
361
361
362
-
If you continue to the next step, [Add an Azure Storage queue output binding](functions-add-output-binding-storage-queue-python.md), keep all your resources in place as you'll build on what you've already done.
362
+
If you continue to the next step, [Add an Azure Storage queue output binding](functions-add-output-binding-storage-queue-cli.md), keep all your resources in place as you'll build on what you've already done.
363
363
364
364
Otherwise, use the following command to delete the resource group and all its contained resources to avoid incurring further costs.
0 commit comments