Skip to content

Commit a713bf4

Browse files
committed
update for Acrolinx
1 parent 25193f0 commit a713bf4

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/odbc/microsoft/correlation-names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ author: David-Engel
1616
ms.author: v-daenge
1717
---
1818
# Correlation Names
19-
Correlation names are fully supported, including within the table list. For example, in the following string, E1 is the correlation name for the table named Emp:
19+
Correlation names are fully supported, including within the list. For example, in the following string, E1 is the correlation name for the table named Emp:
2020

2121
```
2222
SELECT * FROM Emp E1

docs/odbc/microsoft/create-index-for-paradox.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ CREATE INDEX PartNum
6464
ON SO_LINES (PartNum)
6565
```
6666

67-
Note that when two CREATE INDEX statements are performed, the first statement will always create a primary index with the same name as the table and the second statement will always create a non-unique index with the same name as the column. These indexes will be named this way even if different names are entered in the CREATE INDEX statements and even if the index is labeled UNIQUE in the second CREATE INDEX statement.
67+
> [!NOTE]
68+
> When two CREATE INDEX statements are performed, the first statement will always create a primary index with the same name as the table and the second statement will always create a non-unique index with the same name as the column.
69+
> Indexes will be named this way even if different names are entered in the CREATE INDEX statements. Even if the index is labeled UNIQUE in the second CREATE INDEX statement.
6870
69-
> [!NOTE]
70-
> When you use the Paradox driver without implementing the Borland Database Engine, only read and append statements are allowed.
71+
> [!NOTE]
72+
> When you use the Paradox driver without implementing the Borland Database Engine, only read and append statements are allowed.

docs/odbc/microsoft/create-index-statement-limitations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ The CREATE INDEX statement is not supported for the Microsoft Excel or Text driv
2424

2525
When the dBASE driver is used, response time on large files can be improved by building an .mdx (or .ndx) index on the column (field) specified in the WHERE clauses of a SELECT statement. Existing .mdx indexes will automatically be applied for =, >, \<, >=, =<, and BETWEEN operators in a WHERE clause, and LIKE predicates, as well as in join predicates.
2626

27-
When the dBASE driver is used, the index created by a CREATE UNIQUE INDEX statement is actually non-unique, and duplicate values can be inserted into the indexed column. Only one record from a set with identical key values can be added to the index.
27+
When the dBASE driver is used, the index created by a CREATE UNIQUE INDEX statement is non-unique, and duplicate values can be inserted into the indexed column. Only one record from a set with identical key values can be added to the index.
2828

2929
When the Paradox driver is used, a unique index must be defined upon a contiguous subset of the columns in a table, including the first column. A table cannot be updated by the Paradox driver if a unique index is not defined on the table or when the Paradox driver is used without the implementation of the Borland Database Engine.

0 commit comments

Comments
 (0)