Skip to content

Commit c12e41e

Browse files
authored
Merge pull request #7248 from MicrosoftDocs/master
9/14 PM Publish
2 parents b8e2e3e + a9fe6f1 commit c12e41e

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

docs/relational-databases/data-tier-applications/dac-support-for-sql-server-objects-and-versions.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "DAC Support For SQL Server Objects and Versions | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "03/14/2017"
4+
ms.date: "09/13/2018"
55
ms.prod: sql
66
ms.component: "data-tier-applications"
77
ms.reviewer: ""
@@ -20,7 +20,16 @@ manager: craigg
2020
A data-tier application (DAC) supports the most commonly used [!INCLUDE[ssDE](../../includes/ssde-md.md)] objects.
2121

2222
**In This Topic**
23-
23+
24+
25+
> [!IMPORTANT]
26+
> This article is valid for SQL Server 2012, but not for SQL Server 2014 or later.
27+
> For DAC articles about SQL 2012 and earlier, see the following links:
28+
>
29+
> - https://docs.microsoft.com/previous-versions/sql/sql-server-2008-r2/ee240739(v=sql.105)
30+
> - https://docs.microsoft.com/previous-versions/sql/sql-server-2012/hh753459(v=sql.110)
31+
32+
2433
- [Supported SQL Server Objects](#SupportedObjects)
2534

2635
- [Data-tier Application Support by the Versions of SQL Server](#SupportByVersion)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ sp_setapprole [ @rolename = ] 'role',
9090
The following example activates an application role named `SalesAppRole`, with the plain-text password `AsDeF00MbXX`, created with permissions specifically designed for the application used by the current user.
9191

9292
```
93-
EXEC sp_setapprole 'SalesApprole', 'AsDeF00MbXX';
93+
EXEC sys.sp_setapprole 'SalesApprole', 'AsDeF00MbXX';
9494
GO
9595
```
9696

@@ -99,12 +99,12 @@ GO
9999

100100
```
101101
DECLARE @cookie varbinary(8000);
102-
EXEC sp_setapprole 'Sales11', 'fdsd896#gfdbfdkjgh700mM'
102+
EXEC sys.sp_setapprole 'Sales11', 'fdsd896#gfdbfdkjgh700mM'
103103
, @fCreateCookie = true, @cookie = @cookie OUTPUT;
104104
-- The application role is now active.
105105
SELECT USER_NAME();
106106
-- This will return the name of the application role, Sales11.
107-
EXEC sp_unsetapprole @cookie;
107+
EXEC sys.sp_unsetapprole @cookie;
108108
-- The application role is no longer active.
109109
-- The original context has now been restored.
110110
GO

docs/relational-databases/tables/changing-the-schema-of-a-system-versioned-temporal-table.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ms.tgt_pltfrm: ""
1111
ms.topic: conceptual
1212
ms.assetid: 9dbe5a21-9335-4f8b-85fd-9da83df79946
1313
caps.latest.revision: 13
14-
author: "CarlRabeler"
15-
ms.author: "carlrab"
14+
author: CarlRabeler
15+
ms.author: carlrab
1616
manager: craigg
1717
monikerRange: "=azuresqldb-current||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current"
1818
---
@@ -57,7 +57,7 @@ ALTER TABLE dbo.Department
5757

5858
- During an **ALTER TABLE** operation, the system holds a schema lock on both tables.
5959

60-
- Specified schema change is propagated to history table in appropriate way (depending on type of change)
60+
- Specified schema change is propagated to history table appropriately (depending on type of change).
6161

6262
- If you add a non-nullable column or alter existing column to become non-nullable, you must specify the default value for existing rows. The system will generate an additional default with the same value and apply it to the history table. Adding **DEFAULT** to a non-empty table is a size of data operation on all editions other than [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Enterprise Edition (on which it is a metadata operation).
6363

0 commit comments

Comments
 (0)