Skip to content

Commit 40f3bea

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/sql-docs-pr into release-remove-sscurrent-tag
2 parents b5b8dd7 + c5b6309 commit 40f3bea

11 files changed

Lines changed: 78 additions & 30 deletions

File tree

docs/database-engine/install-windows/installing-updates-from-the-command-prompt.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Installing Updates from the Command Prompt | Microsoft Docs"
33
description: This article describes command syntax for SQL Server update installation. You can test and modify installation scripts to meet the needs of your organization.
44
ms.custom: ""
5-
ms.date: "09/08/2017"
5+
ms.date: "05/11/2021"
66
ms.prod: sql
77
ms.reviewer: ""
88
ms.technology: install
@@ -76,6 +76,7 @@ The name of the update package can vary and may include a language, edition, and
7676
|**/allinstances**|Applies the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] update to all instances of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] and to all [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] shared, instance-unaware components.|
7777
|**/instancename=InstanceName***|Applies the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] update to an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] named InstanceName, and to all [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] shared, instance-unaware components.|
7878
|**/InstanceID=Inst1**|Applies the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] update to an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Inst1, and to all [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] shared, instance-unaware components.|
79+
|**/hideconsole**|Specifies that [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] the console window is hidden or closed.|
7980
|**/quiet**|Runs the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] update Setup in unattended mode.|
8081
|**/qs**|Displays only the progress UI dialog.|
8182
|**/UpdateEnabled**|Specifies whether [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] setup should discover and include product updates. The valid values are True and False or 1 and 0. By default, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] setup will include updates that are found.|

docs/sql-server/migrate/guides/access-to-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.technology: migration-guide
77
ms.custom:
88
ms.devlang:
99
ms.topic: how-to
10-
author: MashaMSFT
11-
ms.author: mathoma
10+
author: cawrites
11+
ms.author: chadam
1212
ms.date: 03/19/2021
1313
---
1414

docs/sql-server/migrate/guides/db2-to-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.prod: sql
77
ms.reviewer: ""
88
ms.technology: migration-guide
99
ms.topic: how-to
10-
author: MashaMSFT
11-
ms.author: mathoma
10+
author: cawrites
11+
ms.author: chadam
1212
---
1313
# Migration guide: IBM Db2 to SQL Server
1414
[!INCLUDE[sqlserver](../../../includes/applies-to-version/sqlserver.md)]

docs/sql-server/migrate/guides/mysql-to-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.technology: migration-guide
77
ms.custom:
88
ms.devlang:
99
ms.topic: how-to
10-
author: MashaMSFT
11-
ms.author: mathoma
10+
author: cawrites
11+
ms.author: chadam
1212
ms.date: 03/19/2021
1313
---
1414

docs/sql-server/migrate/guides/oracle-to-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.technology: migration-guide
77
ms.custom:
88
ms.devlang:
99
ms.topic: how-to
10-
author: MashaMSFT
11-
ms.author: mathoma
10+
author: cawrites
11+
ms.author: chadam
1212
ms.date: 03/19/2021
1313
---
1414

docs/sql-server/migrate/guides/sap-ase-to-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.technology: migration-guide
77
ms.custom:
88
ms.devlang:
99
ms.topic: how-to
10-
author: MashaMSFT
11-
ms.author: mathoma
10+
author: cawrites
11+
ms.author: chadam
1212
ms.date: 03/19/2021
1313
---
1414

docs/sql-server/migrate/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ metadata:
99
description: Choose the SQL Server migration path you're interested in.
1010
ms.prod: sql
1111
ms.topic: landing-page
12-
author: MashaMSFT
13-
ms.author: mathoma
12+
author: cawrites
13+
ms.author: chadam
1414
ms.date: 12/09/2019
1515
ms.reviewer: rajpo
1616

docs/t-sql/language-elements/begin-end-transact-sql.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ GO
6363
IF @@TRANCOUNT = 0
6464
BEGIN
6565
SELECT FirstName, MiddleName
66-
FROM Person.Person WHERE LastName = 'Adams'
67-
ROLLBACK TRANSACTION
68-
PRINT N'Rolling back the transaction two times would cause an error.'
69-
END
70-
ROLLBACK TRANSACTION
71-
PRINT N'Rolled back the transaction.'
66+
FROM Person.Person WHERE LastName = 'Adams';
67+
ROLLBACK TRANSACTION;
68+
PRINT N'Rolling back the transaction two times would cause an error.';
69+
END;
70+
ROLLBACK TRANSACTION;
71+
PRINT N'Rolled back the transaction.';
7272
GO
7373
/*
7474
Rolled back the transaction.
@@ -81,13 +81,13 @@ Rolled back the transaction.
8181
```sql
8282
-- Uses AdventureWorks
8383

84-
DECLARE @Iteration Integer = 0
84+
DECLARE @Iteration Integer = 0;
8585
WHILE @Iteration <10
8686
BEGIN
8787
SELECT FirstName, MiddleName
88-
FROM dbo.DimCustomer WHERE LastName = 'Adams'
89-
SET @Iteration += 1
90-
END
88+
FROM dbo.DimCustomer WHERE LastName = 'Adams';
89+
SET @Iteration += 1 ;
90+
END;
9191
```
9292

9393
## See Also

docs/toc.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6127,17 +6127,19 @@ items:
61276127
items:
61286128
- name: Overview
61296129
href: tools/synapse-pathway/azure-synapse-pathway-overview.md
6130+
- name: Release notes
6131+
href: tools/synapse-pathway/pathway-release-notes.md
61306132
- name: Azure Synapse Pathway FAQ
61316133
href: tools/synapse-pathway/pathway-faq.md
6132-
- name: Behind the Scenes
6134+
- name: Behind the scenes
61336135
href: tools/synapse-pathway/synapse-pathway-behind-the-scenes.md
61346136
- name: Installation
61356137
href: tools/synapse-pathway/synapse-pathway-download.md
61366138
- name: Tutorial - Run Azure Synapse Pathway
61376139
href: tools/synapse-pathway/synapse-pathway-assessment.md
6138-
- name: Tutorial - Save and Load
6140+
- name: Tutorial - Save and load
61396141
href: tools/synapse-pathway/tutorial-save-load-assessment.md
6140-
- name: Generate Reports
6142+
- name: Generate reports
61416143
href: tools/synapse-pathway/report-generation.md
61426144
- name: Manage, monitor, & tune
61436145
items:

docs/tools/synapse-pathway/pathway-faq.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Azure Synapse Pathway Preview FAQ
33
description: Frequently asked question for Azure Synapse Pathway
4-
author: anshul82-ms
5-
ms.author: anrampal
4+
author: twounder
5+
ms.author: mausher
66
ms.topic: overview
7-
ms.date: 03/02/2021
7+
ms.date: 05/10/2021
88
ms.prod: sql
99
ms.technology: tools-other
1010
monikerRange: "=azure-sqldw-latest"
@@ -43,7 +43,7 @@ A. Synapse Pathway preview version supports code translation of tables, schemas,
4343
| Source Platform| Statement Types Supported |
4444
|:-------------------:|:------------------|
4545
| IBM Netezza | Create/Alter/Drop Database<br /> Create/Alter/Drop Schema <br /> Create/Alter/Drop Table |
46-
|Microsoft SQL Server | Create/Alter/Drop Database<br /> Create/Alter/Drop Schema <br /> Create/Alter/Drop Table |
46+
| Microsoft SQL Server | Create/Alter/Drop Database<br /> Create/Alter/Drop Schema <br /> Create/Alter/Drop Table <br /> Create/Alter/Drop View |
4747
| Snowflake | Create/Alter/Drop Database<br /> Create/Alter/Drop Schema <br /> Create/Alter/Drop Table |
4848

4949

0 commit comments

Comments
 (0)