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/advanced-analytics/r/install-additional-r-packages-on-sql-server.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Add new R packages to SQL Server 2016 R Services or SQL Server 2017
4
4
ms.prod: sql
5
5
ms.technology: machine-learning
6
6
7
-
ms.date: 05/17/2018
7
+
ms.date: 05/17/2019
8
8
ms.topic: conceptual
9
9
author: dphansen
10
10
ms.author: davidph
@@ -26,7 +26,7 @@ This article describes how to install new R packages to an instance of SQL Serve
26
26
27
27
The R package library is physically located in the Program Files folder of your SQL Server instance, in a secure folder with restricted access. Writing to this location requires administrator permissions.
28
28
29
-
Non-administrators can install packages but doing so requires addititional configuration and capability not available in initial installations. There are two approaches for non-admin package installations: RevoScaleR using version 9.0.1 and later, or using CREATE EXTERNAL LIBRARY (SQL Server 2017 only). In SQL Server 2017, **dbo_owner** or another user with CREATE EXTERNAL LIBRARY permission can install R packages to the current database.
29
+
Non-administrators can install packages but doing so requires additional configuration and capability not available in initial installations. There are two approaches for non-admin package installations: RevoScaleR using version 9.0.1 and later, or using CREATE EXTERNAL LIBRARY (SQL Server 2017 only). In SQL Server 2017, **dbo_owner** or another user with CREATE EXTERNAL LIBRARY permission can install R packages to the current database.
30
30
31
31
R developers are accustomed to creating user libraries for the packages they need if centrally located libraries are off-limits. This practice is problematic for R code executing in a SQL Server database engine instance. SQL Server cannot load packages from external libraries, even if that library is on the same computer. Only packages from the instance library can be used in R code running in SQL Server.
32
32
@@ -46,7 +46,7 @@ In general, servers that host production databases block internet connections. I
46
46
47
47
Identifying all dependencies gets complicated. For R, we recommend that you use [miniCRAN to create a local repository](create-a-local-package-repository-using-minicran.md) and then transfer the fully defined repo to an isolated SQL Server instance.
48
48
49
-
Alternativley, you can perform this steps manually:
49
+
Alternatively, you can perform these steps manually:
50
50
51
51
1. Identify all package dependencies.
52
52
2. Check whether any required packages are already installed on the server. If the package is installed, verify that the version is correct.
@@ -91,4 +91,4 @@ Packages that are installed to the R_SERVER library are used only by a standalon
91
91
## See also
92
92
93
93
+[Install new Python packages](../python/install-additional-python-packages-on-sql-server.md)
0 commit comments