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

Commit e32a0b3

Browse files
authored
Merge pull request #19298 from julieMSFT/20210510_buildwarnings
updates for warning in repo
2 parents 072431e + b065f41 commit e32a0b3

7 files changed

Lines changed: 43 additions & 34 deletions

File tree

docs/connect/jdbc/release-notes-for-the-jdbc-driver.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ Released: January 29, 2021
5252
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 9.2.0 for SQL Server (zip)](https://go.microsoft.com/fwlink/?linkid=2153622)**
5353
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 9.2.0 for SQL Server (tar.gz)](https://go.microsoft.com/fwlink/?linkid=2153521)**
5454

55-
Zip file: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40a)
55+
If you need to download the driver in a language other than the one detected for you, you can use these direct links.
56+
For the driver in a zip file: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40a)
5657
Tar.gz file: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x40a)
5758

5859
### Support for JDK 15

docs/integration-services/control-flow/bulk-insert-task.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,9 @@ ms.author: chugu
194194
**FirstRow**
195195
Specify the first row from which to start copying.
196196

197-
**Options**
198-
|Term|Definition|
197+
**Options**
198+
199+
|Term|Definition|
199200
|----------|----------------|
200201
|**Check constraints**|Select to check the table and column constraints.|
201202
|**Keep nulls**|Select to retain null values during the bulk insert operation, instead of inserting any default values for empty columns.|

docs/relational-databases/query-processing-architecture-guide.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,13 +1333,15 @@ The following illustration shows the properties of the `Clustered Index Seek` op
13331333

13341334
When an operator such as an Index Seek is executed on a partitioned table or index, the `Partitioned` attribute appears in the compile-time and run-time plan and is set to `True` (1). The attribute does not display when it is set to `False` (0).
13351335

1336-
The `Partitioned` attribute can appear in the following physical and logical operators:
1337-
|||
1338-
|--------|--------|
1339-
|Table Scan|Index Scan|
1340-
|Index Seek|Insert|
1341-
|Update|Delete|
1342-
|Merge||
1336+
The `Partitioned` attribute can appear in the following physical and logical operators:
1337+
1338+
- Table Scan
1339+
- Index Scan
1340+
- Index Seek
1341+
- Insert
1342+
- Update
1343+
- Delete
1344+
- Merge
13431345

13441346
As shown in the previous illustration, this attribute is displayed in the properties of the operator in which it is defined. In the XML Showplan output, this attribute appears as `Partitioned="1"` in the `RelOp` node of the operator in which it is defined.
13451347

docs/relational-databases/search/use-the-full-text-indexing-wizard.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,13 @@ monikerRange: "=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||
9292
d. **Select index filegroup**
9393
Specify the filegroup on which to create the full-text index.
9494

95-
e. Select a value:
95+
e. Select a value:
96+
9697
|Value|Description|
9798
|-----------|-----------------|
9899
|**<default>**| If the table or view is not partitioned, select to use the same filegroup as the underlying table or view. If the table or view is partitioned, the primary filegroup is used|
99100
|**PRIMARY**|Select to use the primary filegroup for the new full-text index.|
100-
*user-specified default filegroup*|If a user-defined default stoplist exists, select its name from the list to use that filegroup for the new full-text index.|
101+
*user-specified default filegroup*|If a user-defined default stoplist exists, select its name from the list to use that filegroup for the new full-text index.|
101102

102103
103104
11. **Select full-text stoplist**

docs/relational-databases/system-dynamic-management-views/sys-dm-io-pending-io-requests-transact-sql.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,23 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
2828
Returns a row for each pending I/O request in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)].
2929

3030
> [!NOTE]
31-
> To call this from [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)] or [!INCLUDE[ssPDW](../../includes/sspdw-md.md)], use the name **sys.dm_pdw_nodes_io_pending_io_requests**.
32-
31+
> To call this from [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)] or [!INCLUDE[ssPDW](../../includes/sspdw-md.md)], use the name **sys.dm_pdw_nodes_io_pending_io_requests**.
32+
>
33+
3334
|Column name|Data type|Description|
3435
|-----------------|---------------|-----------------|
3536
|**io_completion_request_address**|**varbinary(8)**|Memory address of the IO request. Is not nullable.|
3637
|**io_type**|**nvarchar(60)**|Type of pending I/O request. Is not nullable.|
3738
|**io_pending_ms_ticks**|**bigint**|Internal use only. Is not nullable.|
3839
|**io_pending**|**int**|Indicates whether the I/O request is pending (1) or has been completed by the operating system (0). An I/O request can still be pending even when OS has completed the request, but [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] has not yet performed a context switch in which it would process the I/O request and remove it from this list. Is not nullable. <br /> **Value** <br /> 0 = Pending SQL Server <br /> 1 = Pending OS <br />|
39-
4040
|**io_completion_routine_address**|**varbinary(8)**|Internal function to call when the I/O request is completed. Is nullable.|
4141
|**io_user_data_address**|**varbinary(8)**|Internal use only. Is nullable.|
4242
|**scheduler_address**|**varbinary(8)**|Scheduler on which this I/O request was issued. The I/O request will appear on the pending I/O list of the scheduler. For more information, see [sys.dm_os_schedulers &#40;Transact-SQL&#41;](../../relational-databases/system-dynamic-management-views/sys-dm-os-schedulers-transact-sql.md). Is not nullable.|
4343
|**io_handle**|**varbinary(8)**|File handle of the file that is used in the I/O request. Is nullable.|
4444
|**io_offset**|**bigint**|Offset of the I/O request. Is not nullable.|
4545
|**io_handle_path**|**nvarchar(256)**| Path of file that is used in the I/O request. Is nullable.|
46-
|**pdw_node_id**|**int**|**Applies to**: [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)], [!INCLUDE[ssPDW](../../includes/sspdw-md.md)]<br /><br /> The identifier for the node that this distribution is on.|
46+
|**pdw_node_id**|**int**|**Applies to**: [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)], [!INCLUDE[ssPDW](../../includes/sspdw-md.md)]<br /><br /> The identifier for the node that this distribution is on.|
47+
4748

4849
## Permissions
4950

docs/reporting-services/report-server/add-a-snapshot-to-report-history-report-manager.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ Report snapshots are not saved in a particular rendering format. Instead, report
7272

7373
::: moniker range=">=sql-server-2017"
7474

75-
## To manually add snapshots to report history
76-
7775
1. In the web portal, navigate to the item that you want to view history for and right-click it.
7876

7977
2. In the drop-down menu, select **Manage**.

docs/t-sql/queries/hints-transact-sql-join.md

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -52,25 +52,30 @@ ms.author: vanto
5252
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
5353

5454
## Arguments
55-
LOOP \| HASH \| MERGE
56-
Specifies that the join in the query should use looping, hashing, or merging. Using LOOP |HASH | MERGE JOIN enforces a particular join between two tables. LOOP cannot be specified together with RIGHT or FULL as a join type. For more information, see [Joins](../../relational-databases/performance/joins.md).
57-
58-
REMOTE
59-
Specifies that the join operation is performed on the site of the right table. This is useful when the left table is a local table and the right table is a remote table. REMOTE should be used only when the left table has fewer rows than the right table.
60-
61-
If the right table is local, the join is performed locally. If both tables are remote but from different data sources, REMOTE causes the join to be performed on the site of the right table. If both tables are remote tables from the same data source, REMOTE is not required.
62-
63-
REMOTE cannot be used when one of the values being compared in the join predicate is cast to a different collation using the COLLATE clause.
64-
65-
REMOTE can be used only for INNER JOIN operations.
55+
56+
LOOP \| HASH \| MERGE
57+
58+
Specifies that the join in the query should use looping, hashing, or merging. Using LOOP |HASH | MERGE JOIN enforces a particular join between two tables. LOOP cannot be specified together with RIGHT or FULL as a join type. For more information, see [Joins](../../relational-databases/performance/joins.md).
59+
60+
REMOTE
61+
62+
Specifies that the join operation is performed on the site of the right table. This is useful when the left table is a local table and the right table is a remote table. REMOTE should be used only when the left table has fewer rows than the right table.
63+
64+
If the right table is local, the join is performed locally. If both tables are remote but from different data sources, REMOTE causes the join to be performed on the site of the right table. If both tables are remote tables from the same data source, REMOTE is not required.
65+
66+
REMOTE cannot be used when one of the values being compared in the join predicate is cast to a different collation using the COLLATE clause.
67+
68+
REMOTE can be used only for INNER JOIN operations.
6669

67-
## Remarks
68-
Join hints are specified in the FROM clause of a query. Join hints enforce a join strategy between two tables. If a join hint is specified for any two tables, the query optimizer automatically enforces the join order for all joined tables in the query, based on the position of the ON keywords. When a CROSS JOIN is used without the ON clause, parentheses can be used to indicate the join order.
70+
## Remarks
71+
72+
Join hints are specified in the FROM clause of a query. Join hints enforce a join strategy between two tables. If a join hint is specified for any two tables, the query optimizer automatically enforces the join order for all joined tables in the query, based on the position of the ON keywords. When a CROSS JOIN is used without the ON clause, parentheses can be used to indicate the join order.
6973

7074
## Examples
7175

72-
### A. Using HASH
73-
The following example specifies that the `JOIN` operation in the query is performed by a `HASH` join. The example uses the [!INCLUDE[ssSampleDBnormal](../../includes/sssampledbnormal-md.md)] database.
76+
### A. Using HASH
77+
78+
The following example specifies that the `JOIN` operation in the query is performed by a `HASH` join. The example uses the [!INCLUDE[ssSampleDBnormal](../../includes/sssampledbnormal-md.md)] database.
7479

7580
```sql
7681
SELECT p.Name, pr.ProductReviewID
@@ -104,6 +109,6 @@ GO
104109
```
105110

106111
## See Also
107-
[Hints &#40;Transact-SQL&#41;](../../t-sql/queries/hints-transact-sql.md)
112+
[Hints &#40;Transact-SQL&#41;](../../t-sql/queries/hints-transact-sql.md)
108113

109114

0 commit comments

Comments
 (0)