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

Commit 05e1435

Browse files
committed
Merge branch 'release-2019-cu12' of github.com:MicrosoftDocs/sql-docs-pr into release-2019-cu
2 parents 9c2acb2 + 4b12bab commit 05e1435

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/relational-databases/system-catalog-views/schemas-catalog-views-sys-schemas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Database schemas act as namespaces or containers for objects, such as tables, vi
4242
Each schema has a an owner. The owner is a security [principal](../../relational-databases/security/authentication-access/principals-database-engine.md).
4343

4444
## Permissions
45-
Requires membership in the **public** role. For more information, see [Metadata Visibility Configuration](../../relational-databases/security/metadata-visibility-configuration.md).
45+
Requires membership in the **public** role.
4646

4747
## See Also
4848
[Principals](../../relational-databases/security/authentication-access/principals-database-engine.md)

docs/relational-databases/system-catalog-views/sys-configurations-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For a configuration option that is not dynamic there is no way to tell if the RE
7070

7171

7272
## Permissions
73-
Requires membership in the **public** role. For more information, see [Metadata Visibility Configuration](../../relational-databases/security/metadata-visibility-configuration.md).
73+
Requires membership in the **public** role.
7474

7575
## See Also
7676
[Server-wide Configuration Catalog Views (Transact-SQL)](../../relational-databases/system-catalog-views/server-wide-configuration-catalog-views-transact-sql.md)

docs/t-sql/language-elements/bitwise-not-transact-sql.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,17 @@ FROM bitwise;
9090
(1 row(s) affected)
9191
```
9292

93-
The binary representation of 170 (`a_int_value` or `A`) is `0000 0000 1010 1010`. Performing the bitwise NOT operation on this value produces the binary result `1111 1111 0101 0101`, which is decimal -171. The binary representation for 75 is `0000 0000 0100 1011`. Performing the bitwise NOT operation produces `1111 1111 1011 0100`, which is decimal -76.
93+
The binary representation of 170 (`a_int_value` or `A`) is `0000 0000 0000 0000 0000 0000 1010 1010`. Performing the bitwise NOT operation on this value produces the binary result `1111 1111 1111 1111 1111 1111 0101 0101`, which is decimal -171. The binary representation for 75 is `0000 0000 0000 0000 0000 0000 0100 1011`. Performing the bitwise NOT operation produces `1111 1111 1111 1111 1111 1111 1011 0100`, which is decimal -76.
9494

9595
```
9696
(~A)
97-
0000 0000 1010 1010
98-
-------------------
99-
1111 1111 0101 0101
97+
0000 0000 0000 0000 0000 0000 1010 1010
98+
---------------------------------------
99+
1111 1111 1111 1111 1111 1111 0101 0101
100100
(~B)
101-
0000 0000 0100 1011
102-
-------------------
103-
1111 1111 1011 0100
101+
0000 0000 0000 0000 0000 0000 0100 1011
102+
---------------------------------------
103+
1111 1111 1111 1111 1111 1111 1011 0100
104104
```
105105

106106

0 commit comments

Comments
 (0)