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

Commit 2e31800

Browse files
authored
Merge pull request #14511 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents a01a85c + 18f75de commit 2e31800

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/linux/sql-server-linux-setup-language-extensions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Commands for removing packages appear in the following table.
4848

4949
| Platform | Package removal command(s) |
5050
|-----------|----------------------------|
51-
| RHEL | `sudo yum remove msssql-server-extensibility-java` |
52-
| SLES | `sudo zypper remove msssql-server-extensibility-java` |
53-
| Ubuntu | `sudo apt-get remove msssql-server-extensibility-java`|
51+
| RHEL | `sudo yum remove mssql-server-extensibility-java` |
52+
| SLES | `sudo zypper remove mssql-server-extensibility-java` |
53+
| Ubuntu | `sudo apt-get remove mssql-server-extensibility-java`|
5454

5555
### 3. Install SQL Server 2019
5656

@@ -304,4 +304,4 @@ There is parity between Linux and Windows for [Resource governance](../t-sql/sta
304304

305305
Java developers can get started with some simple examples, and learn the basics of how Java works with SQL Server. For your next step, see the following links:
306306

307-
+ [Tutorial: Regular expressions with Java](../language-extensions/tutorials/search-for-string-using-regular-expressions-in-java.md)
307+
+ [Tutorial: Regular expressions with Java](../language-extensions/tutorials/search-for-string-using-regular-expressions-in-java.md)

docs/relational-databases/tables/creating-a-system-versioned-temporal-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ For example, you may have a set of tables where versioning is implemented with t
128128
- Better DML performance
129129
- Minimal maintenance costs
130130

131-
When converting an existing table, consider using the **HIDDEN** clause to hide the new **PERIOD** columns (the datetime2 columns **SysStartTime** and **SysEndTime**) to avoid impacting existing applications that are not designed to handle new columns.
131+
When converting an existing table, consider using the **HIDDEN** clause to hide the new **PERIOD** columns (the datetime2 columns **SysStartTime** and **SysEndTime**) to avoid impacting existing applications that do not explicitly specify column names (e.g. SELECT * or INSERT without column list) are not designed to handle new columns.
132132

133133
### Adding versioning to non-temporal tables
134134

docs/t-sql/statements/create-table-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ Indicates that the **text**, **ntext**, **image**, **xml**, **varchar(max)**, **
390390
`TEXTIMAGE_ON` is not allowed if there are no large value columns in the table. `TEXTIMAGE_ON` cannot be specified if *partition_scheme* is specified. If **"default"** is specified, or if `TEXTIMAGE_ON` is not specified at all, the large value columns are stored in the default filegroup. The storage of any large value column data specified in `CREATE TABLE` cannot be subsequently altered.
391391

392392
> [!NOTE]
393-
> Varchar(max), nvarchar(max), varbinary(max), xml and large UDT values are stored directly in the data row, up to a limit of 8,000 bytes and as long as the value can fit the record. If the value does not fit in the record, a pointer is sorted in-row and the rest is stored out of row in the LOB storage space. 0 is the default value, which indicates that all values are stored directly in the data row.
393+
> Varchar(max), nvarchar(max), varbinary(max), xml and large UDT values are stored directly in the data row, up to a limit of 8,000 bytes and as long as the value can fit the record. If the value does not fit in the record, a pointer is stored in-row and the rest is stored out of row in the LOB storage space. 0 is the default value, which indicates that all values are stored directly in the data row.
394394
>
395395
> `TEXTIMAGE_ON` only changes the location of the "LOB storage space", it does not affect when data is stored in-row. Use large value types out of row option of sp_tableoption to store the entire LOB value out of the row.
396396
>

0 commit comments

Comments
 (0)