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/azure-data-studio/tutorial-backup-restore-sql-server.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ After you select **Backup**, the **Backup database** dialog box disappears and t
62
62
63
63
1. Select **Backup file** in the **Restore from** box.
64
64
65
-
1. Select the ellipses (...) in the **Backup file path** box, and select the latest backup file for *TutorialDB*.
65
+
1. Select the ellipses (...) in the **Backup file path** box, and select the latest backup file for *TutorialDB*. Ensure the SQL Server service has READ permissions on the backup file.
66
66
67
67
1. Enter **TutorialDB_Restored** in the **Target database** box in the **Destination** section to restore the backup file to a new database. Then select **Restore**.
Run the following **icacls** commands from a new elevated command prompt to grant **READ & EXECUTE** access to the installed libraries to **SQL Server Launchpad Service** and SID **S-1-15-2-1 (ALL_APPLICATION_PACKAGES)**.
Copy file name to clipboardExpand all lines: docs/machine-learning/tutorials/python-clustering-model-prepare-data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ column_info = {
118
118
Results from the query are returned to Python using the Pandas **read_sql** function. As part of the process, you'll use the column information you defined in the previous script.
-[SQL Server Machine Learning Services](../sql-server-machine-learning-services.md) with the Python language option - Follow the installation instructions in the [Windows installation guide](../install/sql-machine-learning-services-windows-install-sql-2022.md) or the [Linux installation guide](../../linux/sql-server-linux-setup-machine-learning-sql-2022.md?toc=%252fsql%252fmachine-learning%252ftoc.json&view=sql-server-linux-ver16&preserve-view=true).
-[SQL Server Machine Learning Services](../sql-server-machine-learning-services.md) with the Python language option - Follow the installation instructions in the [Windows installation guide](../install/sql-machine-learning-services-windows-install.md) or the [Linux installation guide](../../linux/sql-server-linux-setup-machine-learning.md?toc=%252fsql%252fmachine-learning%252ftoc.json&view=sql-server-linux-ver15&preserve-view=true). You can also [enable Machine Learning Services on SQL Server Big Data Clusters](../../big-data-cluster/machine-learning-services.md).
50
53
::: moniker-end
51
54
::: moniker range="=sql-server-2017"
@@ -61,7 +64,7 @@ In [part four](python-clustering-model-deploy.md), learn how to create a stored
61
64
62
65
- Additional Python packages - The examples in this tutorial series use Python packages that you may or may not have installed.
63
66
64
-
Open a**Command Prompt** and change to the installation path for the version of Python you use in Azure Data Studio. For example, `cd %LocalAppData%\Programs\Python\Python37-32`. Then run the following commands to install any of these packages that aren't already installed.
67
+
Open an**Admin Command Prompt** and change to the installation path for the version of Python you use in Azure Data Studio. For example, `cd %LocalAppData%\Programs\Python\Python37-32`. Then run the following commands to install any of these packages that aren't already installed. Ensure these packages are installed in the correct python install location, you can use the option `-t` to specify the destination directory.
65
68
66
69
```console
67
70
pip install matplotlib
@@ -71,6 +74,15 @@ In [part four](python-clustering-model-deploy.md), learn how to create a stored
71
74
pip install scikit-learn
72
75
```
73
76
77
+
::: moniker range=">=sql-server-ver15"
78
+
Run the following **icacls** commands to grant **READ & EXECUTE** access to the installed libraries to **SQL Server Launchpad Service** and SID **S-1-15-2-1 (ALL_APPLICATION_PACKAGES)**.
The sample dataset used in this tutorial has been saved to a **.bak** database backup file for you to download and use. This dataset is derived from the [tpcx-bb](http://www.tpc.org/tpcx-bb/default5.asp) dataset provided by the [Transaction Processing Performance Council (TPC)](http://www.tpc.org/).
0 commit comments