You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/2014/relational-databases/replication/agents/replication-snapshot-agent.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Replication Snapshot Agent | Microsoft Docs"
3
3
ms.custom: ""
4
-
ms.date: "06/13/2017"
4
+
ms.date: "09/07/2018"
5
5
ms.prod: "sql-server-2014"
6
6
ms.reviewer: ""
7
7
ms.suite: ""
@@ -56,7 +56,8 @@ manager: craigg
56
56
[-MaxNetworkOptimization [0|1]]
57
57
[-Outputoutput_path_and_file_name]
58
58
[-OutputVerboseLevel [0|1|2] ]
59
-
[-PacketSizepacket_size]
59
+
[-PacketSizepacket_size]
60
+
[-PrefetchTables [0|1] ]
60
61
[-ProfileNameprofile_name]
61
62
[-PublisherDBpublisher_database]
62
63
[-PublisherDeadlockPriority [-1|0|1] ]
@@ -188,6 +189,14 @@ manager: craigg
188
189
|**0**|Only error messages are printed.|
189
190
|**1** (default)|All the progress report messages are printed (default).|
190
191
|**2**|All error messages and progress report messages are printed, which is useful for debugging.|
192
+
193
+
**-PrefetchTables**[**0**| **1**]
194
+
Optional parameter that specifies if the table objects will be prefetched and cached. The default behavior is to prefetch certain table properties using SMO component based on an internal calculation. This parameter can be helpful in scenarions where SMO prefetch operation takes considerable longer to run. If this parameter is not used, this decision is made at runtime based on the percentage of tables that are added as articles to the publication.
|**0**|Call to Prefetch method of SMO component is disabled.|
199
+
|**1**|Snapshot Agent will call Prefetch method to cache some table properties using SMO|
191
200
192
201
**-PacketSize***packet_size*
193
202
Is the packet size (in bytes) used by the Snapshot Agent when connecting to [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)]. The default value is 8192 bytes.
Starting in SQL Server 2017, R and Python support for in-database analytics is provided in SQL Server Machine Learning Services, the successor to R Services feature introduced in SQL Server 2016. Function libraries are available in R and Python and run as external script on a database engine instance.
16
+
Starting in SQL Server 2017, R and Python support for in-database analytics is provided in SQL Server Machine Learning Services, the successor to [SQL Server R Services](../r/sql-server-r-services.md) introduced in SQL Server 2016. Function libraries are available in R and Python and run as external script on a database engine instance.
16
17
17
18
This article explains how to install the machine learning component by running the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] setup wizard, and following the on-screen prompts.
This article explains how to install and configure **SQL Server 2016 R Services (In-Database)**. If you have SQL Server 2016, install this feature to enable execution of R code in SQL Server.
16
+
This article explains how to install and configure **SQL Server 2016 R Services**. If you have SQL Server 2016, install this feature to enable execution of R code in SQL Server.
In SQL Server 2017, R integration is offered in [Machine Learning Services](../r/r-server-standalone.md), reflecting the addition of Python. If you want R integration and have SQL Server 2017 installation media, see [Install SQL Server 2017 Machine Learning Services](sql-machine-learning-services-windows-install.md) to add the feature.
18
19
19
-
+ SQL Server 2016 setup is required if you want to install R Services. If instead you have SQL Server 2017 installation media, you should install [SQL Server 2017 Machine Learning Services (In-Database)](sql-machine-learning-services-windows-install.md) to get R integration for that version of SQL Server.
+ A database engine instance is required. You cannot install just R, although you can add it incrementally to an existing instance.
22
23
@@ -26,7 +27,7 @@ This article explains how to install and configure **SQL Server 2016 R Services
26
27
27
28
+ Do not install **Shared Features** > **R Server (Standalone)** on the same computer running an in-database instance.
28
29
29
-
+ Side-by-side installation with other versions of R and Python are possible because the SQL Server instance uses its own copies of the open-source R and Anaconda distributions. However, running code that uses R and Python on the SQL Server computer outside SQL Server can lead to various problems:
30
+
Side-by-side installation with other versions of R and Python are possible because the SQL Server instance uses its own copies of the open-source R and Anaconda distributions. However, running code that uses R and Python on the SQL Server computer outside SQL Server can lead to various problems:
30
31
31
32
+ You use a different library and different executable, and get different results, than you do when you are running in SQL Server.
32
33
+ R and Python scripts running in external libraries cannot be managed by SQL Server, leading to resource contention.
Copy file name to clipboardExpand all lines: docs/relational-databases/replication/agents/replication-snapshot-agent.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Replication Snapshot Agent | Microsoft Docs"
3
3
ms.custom: ""
4
-
ms.date: "03/14/2017"
4
+
ms.date: "09/07/2018"
5
5
ms.prod: sql
6
6
ms.prod_service: "database-engine"
7
7
ms.component: "replication"
@@ -59,6 +59,7 @@ snapshot [ -?]
59
59
[-Output output_path_and_file_name]
60
60
[-OutputVerboseLevel [0|1|2] ]
61
61
[-PacketSize packet_size]
62
+
[-PrefetchTables [0|1] ]
62
63
[-ProfileName profile_name]
63
64
[-PublisherDB publisher_database]
64
65
[-PublisherDeadlockPriority [-1|0|1] ]
@@ -196,7 +197,15 @@ snapshot [ -?]
196
197
197
198
> [!NOTE]
198
199
> Do not change the packet size unless you are certain that it will improve performance. For most applications, the default packet size is best.
200
+
201
+
**-PrefetchTables**[**0**| **1**]
202
+
Optional parameter that specifies if the table objects will be prefetched and cached. The default behavior is to prefetch certain table properties using SMO component based on an internal calculation. This parameter can be helpful in scenarions where SMO prefetch operation takes considerable longer to run. If this parameter is not used, this decision is made at runtime based on the percentage of tables that are added as articles to the publication.
|**0**|Call to Prefetch method of SMO component is disabled.|
207
+
|**1**|Snapshot Agent will call Prefetch method to cache some table properties using SMO|
208
+
200
209
**-ProfileName***profile_name*
201
210
Specifies an agent profile to use for agent parameters. If **ProfileName** is NULL, the agent profile is disabled. If **ProfileName** is not specified, the default profile for the agent type is used. For information, see [Replication Agent Profiles](../../../relational-databases/replication/agents/replication-agent-profiles.md).
0 commit comments