Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 476713e

Browse files
committed
Bringing even with master.
2 parents 2ee9d4a + 479bf0d commit 476713e

8 files changed

Lines changed: 124 additions & 171 deletions

File tree

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13849,6 +13849,16 @@
1384913849
"source_path": "docs/powershell/sql-server-powershell-license-terms.md",
1385013850
"redirect_url": "https://docs.microsoft.com/Legal/sql/sql-server-powershell-license-terms",
1385113851
"redirect_document_id": true
13852+
},
13853+
{
13854+
"source_path": "docs/ssdt/install-sql-server-data-tools.md",
13855+
"redirect_url": "/sql/ssdt/download-sql-server-data-tools-ssdt",
13856+
"redirect_document_id": false
13857+
},
13858+
{
13859+
"source_path": "docs/ssdt/removing-sql-server-data-tools-components.md",
13860+
"redirect_url": "/sql/ssdt/download-sql-server-data-tools-ssdt",
13861+
"redirect_document_id": false
1385213862
}
1385313863
]
1385413864
}

docs/integration-services/lift-shift/ssis-azure-connect-with-windows-auth.md

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

docs/relational-databases/system-dynamic-management-views/sys-dm-db-resource-stats-azure-sql-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "sys.dm_db_resource_stats (Azure SQL Database) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "08/14/2018"
4+
ms.date: "03/21/2019"
55
ms.service: sql-database
66
ms.reviewer: ""
77
ms.topic: "language-reference"
@@ -32,7 +32,7 @@ monikerRange: "= azuresqldb-current || = sqlallproducts-allversions"
3232
|avg_cpu_percent|**decimal (5,2)**|Average compute utilization in percentage of the limit of the service tier.|
3333
|avg_data_io_percent|**decimal (5,2)**|Average data I/O utilization in percentage of the limit of the service tier.|
3434
|avg_log_write_percent|**decimal (5,2)**|Average write I/O throughput utilization as percentage of the limit of the service tier.|
35-
|avg_memory_usage_percent|**decimal (5,2)**|Average memory utilization in percentage of the limit of the service tier.<br /><br /> This includes memory used for storage of In-Memory OLTP objects.|
35+
|avg_memory_usage_percent|**decimal (5,2)**|Average memory utilization in percentage of the limit of the service tier.<br /><br /> This includes memory used for buffer pool pages and storage of In-Memory OLTP objects.|
3636
|xtp_storage_percent|**decimal (5,2)**|Storage utilization for In-Memory OLTP in percentage of the limit of the service tier (at the end of the reporting interval). This includes memory used for storage of the following In-Memory OLTP objects: memory-optimized tables, indexes, and table variables. It also includes memory used for processing ALTER TABLE operations.<br /><br /> Returns 0 if In-Memory OLTP is not used in the database.|
3737
|max_worker_percent|**decimal (5,2)**|Maximum concurrent workers (requests) in percentage of the limit of the database's service tier.|
3838
|max_session_percent|**decimal (5,2)**|Maximum concurrent sessions in percentage of the limit of the database's service tier.|

docs/sql-server/install/work-with-multiple-versions-and-instances-of-sql-server.md

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

docs/ssdt/install-sql-server-data-tools.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

docs/ssdt/removing-sql-server-data-tools-components.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

docs/ssms/agent/use-tokens-in-job-steps.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ monikerRange: "= azuresqldb-mi-current || >= sql-server-2016 || = sqlallproducts
2727
2828
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent allows you to use tokens in [!INCLUDE[tsql](../../includes/tsql-md.md)] job step scripts. Using tokens when you write your job steps gives you the same flexibility that variables provide when you write software programs. After you insert a token in a job step script, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent replaces the token at run time, before the job step is executed by the [!INCLUDE[tsql](../../includes/tsql-md.md)] subsystem.
2929

30-
> [!IMPORTANT]
31-
> Starting with [!INCLUDE[ssVersion2005](../../includes/ssversion2005-md.md)] Service Pack 1, the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent job step token syntax changed. As a result, an escape macro must now accompany all tokens used in job steps, or else those job steps will fail. Using escape macros and updating your [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent job steps that use tokens are described in the following sections, "Understanding Using Tokens," " [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent Tokens and Macros," and "Updating Job Steps to Use Macros." In addition, the [!INCLUDE[ssVersion2000](../../includes/ssversion2000-md.md)] syntax, which used square brackets to call out [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent job step tokens (for example, "`[DATE]`") has also changed. You must now enclose token names in parentheses and place a dollar sign (`$`) at the beginning of the token syntax. For example:
32-
>
33-
> `$(ESCAPE_`*macro name*`(DATE))`
3430

3531
## Understanding Using Tokens
3632

@@ -95,10 +91,6 @@ The following tables list and describe the tokens and macros that [!INCLUDE[ssNo
9591
|**$(ESCAPE_NONE(**_token\_name_**))**|Replaces token without escaping any characters in the string. This macro is provided to support backward compatibility in environments where token replacement strings are only expected from trusted users. For more information, see "Updating Job Steps to Use Macros," later in this topic.|
9692

9793
## Updating Job Steps to Use Macros
98-
Beginning with [!INCLUDE[ssVersion2005](../../includes/ssversion2005-md.md)] Service Pack 1, job steps that contain tokens without escape macros will fail and return an error message indicating the job step contains one or more tokens that must be updated with a macro before the job can run.
99-
100-
A script is provided with [!INCLUDE[msCoName](../../includes/msconame_md.md)] Knowledge Base article 915845: [SQL Server Agent Job Steps That Use Tokens Fail in SQL Server 2005 Service Pack 1](https://support.microsoft.com/kb/915845).You can use this script to update all of your job steps that use tokens with the **ESCAPE_NONE** macro. After using this script, we recommend that you review your job steps that use tokens as soon as possible, and replace the **ESCAPE_NONE** macro with an escape macro that is appropriate for the job step context.
101-
10294
The following table describes how token replacement is handled by [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent. To turn alert token replacement on or off, right-click **SQL Server Agent** in Object Explorer, select **Properties**, and on the **Alert System** page, select or clear the **Replace tokens for all job responses to alerts** check box.
10395

10496
|Token syntax|Alert token replacement on|Alert token replacement off|

docs/t-sql/functions/rand-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ RAND ( [ seed ] )
4848

4949
For one connection, if RAND() is called with a specified seed value, all subsequent calls of RAND() produce results based on the seeded RAND() call. For example, the following query will always return the same sequence of numbers.
5050

51-
```
51+
```sql
5252
SELECT RAND(100), RAND(), RAND()
5353
```
5454

5555
## Examples
5656
The following example produces four different random numbers that are generated by the RAND function.
5757

58-
```
58+
```sql
5959
DECLARE @counter smallint;
6060
SET @counter = 1;
6161
WHILE @counter < 5

0 commit comments

Comments
 (0)