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

Commit 763ef04

Browse files
authored
Merge pull request #9303 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents e944032 + 18a023e commit 763ef04

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

docs/relational-databases/system-dynamic-management-views/sys-dm-os-performance-counters-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
3636
|**counter_name**|**nchar(128)**|Name of the counter. To get more information about a counter, this is the name of the topic to select from the list of counters in [Use SQL Server Objects](../../relational-databases/performance-monitor/use-sql-server-objects.md). |
3737
|**instance_name**|**nchar(128)**|Name of the specific instance of the counter. Often contains the database name.|
3838
|**cntr_value**|**bigint**|Current value of the counter.<br /><br /> **Note:** For per-second counters, this value is cumulative. The rate value must be calculated by sampling the value at discrete time intervals. The difference between any two successive sample values is equal to the rate for the time interval used.|
39-
|**cntr_type**|**int**|Type of counter as defined by the Windows performance architecture. See [WMI Performance Counter Types](https://msdn2.microsoft.com/library/aa394569.aspx) on MSDN or your Windows Server documentation for more information on performance counter types.|
39+
|**cntr_type**|**int**|Type of counter as defined by the Windows performance architecture. See [WMI Performance Counter Types](https://docs.microsoft.com/windows/desktop/WmiSdk/wmi-performance-counter-types) on Docs or your Windows Server documentation for more information on performance counter types.|
4040
|**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.|
4141

4242
## Remarks

docs/relational-databases/tables/stopping-system-versioning-on-a-system-versioned-temporal-table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ You can do that by setting **SYSTEM_VERSIONING** clause to **OFF**.
2727
- History table as a regular table
2828

2929
### Important remarks
30-
31-
- No data loss happens when you set **SYSTEM_VERSIONING = OFF** or drop the **SYSTEM_TIME** period.
30+
- History Table will **stop** caturing the updates for the duration of **SYSTEM_VERSIONING = OFF**.
31+
- No data loss happens on the **temporal table** when you set **SYSTEM_VERSIONING = OFF** or drop the **SYSTEM_TIME** period.
3232

3333
- When you set **SYSTEM_VERSIONING = OFF** and do not remove drop the **SYSTEM_TIME** period, the system will continue to update the period columns for every insert and update operation. Deletes on current table will be permanent.
3434

docs/sql-server/applies-to-includes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,5 @@ These applies-to include files are used with Reporting Services documentation.
134134
## Next steps
135135

136136
For more information on how to use these include files, see [Applies-to includes](sql-server-docs-contribute.md#applies-to-includes).
137+
138+
this is a test

docs/t-sql/queries/select-into-clause-transact-sql.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ SELECT...INTO creates a new table in the default filegroup and inserts the resul
7676
- The identity column is from a remote data source.
7777

7878
If any one of these conditions is true, the column is created NOT NULL instead of inheriting the IDENTITY property. If an identity column is required in the new table but such a column is not available, or you want a seed or increment value that is different than the source identity column, define the column in the select list using the IDENTITY function. See "Creating an identity column using the IDENTITY function" in the Examples section below.
79+
80+
## Remarks
81+
The `SELECT...INTO` statement operates in two parts - the new table is created, and then rows are inserted. This means that if the inserts fail, they will all be rolled back, but the new (empty) table will remain. If you need the entire operation to succeed or fail as a whole, use an [explicit transaction](../language-elements/begin-transaction-transact-sql.md).
7982

8083
## Limitations and Restrictions
8184
You cannot specify a table variable or table-valued parameter as the new table.

0 commit comments

Comments
 (0)