Skip to content

Commit a9fe6f1

Browse files
authored
Merge pull request #7245 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents cc3affb + f7537e3 commit a9fe6f1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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)