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

Commit 444284f

Browse files
authored
Merge pull request #5966 from pmasl/patch-226
Update sql-server-index-design-guide.md
2 parents 0854751 + 3fcdad7 commit 444284f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/relational-databases/sql-server-index-design-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -794,11 +794,11 @@ A hash index can be declared as:
794794

795795
The following is an example of the syntax to create a hash index, outside of the CREATE TABLE statement:
796796

797-
```sql
798-
ALTER TABLE MyTable_memop
799-
ADD INDEX ix_hash_Column2 UNIQUE
800-
HASH (Column2) WITH (BUCKET_COUNT = 64);
801-
```
797+
```sql
798+
ALTER TABLE MyTable_memop
799+
ADD INDEX ix_hash_Column2 UNIQUE
800+
HASH (Column2) WITH (BUCKET_COUNT = 64);
801+
```
802802

803803
### Row versions and garbage collection
804804
In a memory-optimized table, when a row is affected by an `UPDATE`, the table creates an updated version of the row. During the update transaction, other sessions might be able to read the older version of the row and thereby avoid the performance slowdown associated with a row lock.

0 commit comments

Comments
 (0)