Skip to content

Commit dc55fa3

Browse files
committed
ADS: Remove Azure Data Studio
1 parent 3f4e803 commit dc55fa3

13 files changed

Lines changed: 38 additions & 129 deletions

docs/database-engine/configure-windows/configure-the-max-degree-of-parallelism-server-configuration-option.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -102,34 +102,32 @@ These options change the `MAXDOP` for the instance.
102102

103103
## Use Transact-SQL
104104

105-
1. Connect to the [!INCLUDE [ssDE](../../includes/ssde-md.md)] with [!INCLUDE [ssManStudioFull](../../includes/ssmanstudiofull-md.md)].
105+
[!INCLUDE [connect-instance-client](../../includes/connect-instance-client.md)]
106106

107-
1. From the Standard bar, select **New Query**.
107+
Copy and paste the following example into a query window and select **Execute**. This example shows how to use [sp_configure](../../relational-databases/system-stored-procedures/sp-configure-transact-sql.md) to configure the `max degree of parallelism` option to `16`.
108108

109-
1. Copy and paste the following example into the query window and select **Execute**. This example shows how to use [sp_configure](../../relational-databases/system-stored-procedures/sp-configure-transact-sql.md) to configure the `max degree of parallelism` option to `16`.
109+
```sql
110+
USE master;
111+
GO
110112

111-
```sql
112-
USE master;
113-
GO
113+
EXECUTE sp_configure 'show advanced options', 1;
114+
GO
114115

115-
EXECUTE sp_configure 'show advanced options', 1;
116-
GO
116+
RECONFIGURE WITH OVERRIDE;
117+
GO
117118

118-
RECONFIGURE WITH OVERRIDE;
119-
GO
119+
EXECUTE sp_configure 'max degree of parallelism', 16;
120+
GO
120121

121-
EXECUTE sp_configure 'max degree of parallelism', 16;
122-
GO
122+
RECONFIGURE WITH OVERRIDE;
123+
GO
123124

124-
RECONFIGURE WITH OVERRIDE;
125-
GO
125+
EXECUTE sp_configure 'show advanced options', 0;
126+
GO
126127

127-
EXECUTE sp_configure 'show advanced options', 0;
128-
GO
129-
130-
RECONFIGURE;
131-
GO
132-
```
128+
RECONFIGURE;
129+
GO
130+
```
133131

134132
For more information, see [Server configuration options](server-configuration-options-sql-server.md).
135133

docs/database-engine/configure-windows/configure-the-user-connections-server-configuration-option.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,6 @@ Execute permissions on `sp_configure` with no parameters or with only the first
4949

5050
1. Restart [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)].
5151

52-
<a id="SSMSProcedure"></a>
53-
54-
## Use Azure Data Studio
55-
56-
1. In the Connections pane under servers, right-click a server and Select **Properties**.
57-
58-
1. Select the **Connections** node.
59-
60-
1. Under **Connections**, in the **Max number of concurrent connections** box, type or select a value from `0` through `32767` to set the maximum number of users that are allowed to connect simultaneously to the instance of [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)].
61-
62-
1. Restart [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)].
63-
6452
<a id="TsqlProcedure"></a>
6553

6654
## Use Transact-SQL

docs/database-engine/configure-windows/connect-to-sql-server-when-system-administrators-are-locked-out.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,6 @@ For step-by-step instructions about how to start [!INCLUDE [ssNoVersion](../../i
5555

5656
### Use PowerShell
5757

58-
#### Option 1: Run the steps directly in an executable notebook using Azure Data Studio
59-
60-
> [!NOTE]
61-
> Before attempting to open this notebook, check that Azure Data Studio is installed on your local machine. To install Azure Data Studio, see [Download and install Azure Data Studio](/azure-data-studio/download-azure-data-studio).
62-
63-
> [!div class="nextstepaction"]
64-
> [Open Notebook in Azure Data Studio](azuredatastudio://microsoft.notebook/open?url=https://raw.githubusercontent.com/microsoft/mssql-support/master/sample-scripts/DOCs-to-Notebooks/T-shooting-SQL-SystemAdmins-Locked-out.ipynb)
65-
66-
#### Option 2: Follow the step manually
67-
6858
1. Open an elevated Windows PowerShell command prompt.
6959

7060
1. Set up service name and [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] instance, and Windows login variables. Replace these values with values that match your environment.

docs/database-engine/install-windows/install-sql-server.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Other [!INCLUDE [ssnoversion](../../includes/ssnoversion-md.md)] components can
6767
- [Latest updates and version history for SQL Server](/troubleshoot/sql/releases/download-and-install-latest-updates)
6868
- [SQL Server Reporting Services](https://www.microsoft.com/download/details.aspx?id=104502).
6969
- [SQL Server Management Studio](/ssms/sql-server-management-studio-ssms)
70+
- [MSSQL extension for Visual Studio Code](../../tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code.md)
7071

7172
## Considerations
7273

docs/includes/azure-data-studio-preview.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/includes/database-migration-services-ads.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

docs/includes/ssms-azure-data-studio-install.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/integration-services/import-export-data/start-the-sql-server-import-and-export-wizard.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ You can start the wizard:
2929
- From the [command prompt](#command-prompt).
3030
- From [Visual Studio](#visual-studio).
3131

32-
> [!TIP]
33-
> Another way to import data is with the [SQL Server Import extension](../../azure-data-studio/extensions/sql-server-import-extension.md) extension in Azure Data Studio.
34-
3532
## Get the wizard
3633

3734
You can run the [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] Import and Export Wizard directly through [!INCLUDE [ssManStudioFull](../../includes/ssmanstudiofull-md.md)] (SSMS).

docs/language-extensions/install/windows-c-sharp.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ Check the installation status of the instance in the setup logs.
151151

152152
Use the following steps to verify that all components used to launch external script are running.
153153

154-
1. In SQL Server Management Studio or Azure Data Studio, open a new query window, and run the following statement:
154+
[!INCLUDE [connect-instance-client](../../includes/connect-instance-client.md)]
155+
156+
1. Connect to a database client, and run the following statement:
155157

156158
```sql
157159
EXECUTE sp_configure 'external scripts enabled';
@@ -163,7 +165,7 @@ Use the following steps to verify that all components used to launch external sc
163165

164166
## Additional configuration
165167

166-
If the verification step was successful, you can run C# code from SQL Server Management Studio, Azure Data Studio, Visual Studio Code, or any other client that can send T-SQL statements to the server.
168+
If the verification step was successful, you can run C# code from any client that can send T-SQL statements to the server.
167169

168170
If you got an error when running the command, review the additional configuration steps in this section. You might need to make extra appropriate configurations to the service or database.
169171

docs/language-extensions/install/windows-java.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ For local installations, you must run Setup as an administrator. If you install
9898

9999
**Database Engine Services**: To use Language Extensions with SQL Server, you must install an instance of the [!INCLUDE [ssde-md](../../includes/ssde-md.md)]. You can use either a default or a named instance.
100100

101-
**Machine Learning Services and Language Extensions**: This option installs the Language Extensions component that support Java code execution.
101+
**Machine Learning Services and Language Extensions**: This option installs the Language Extensions component that supports Java code execution.
102102

103103
- If you want to install the default Java runtime, select both **Machine Learning Services and Language Extensions** and **Java**.
104104

@@ -121,7 +121,7 @@ For local installations, you must run Setup as an administrator. If you install
121121

122122
**Database Engine Services**: To use Language Extensions with SQL Server, you must install an instance of the [!INCLUDE [ssde-md](../../includes/ssde-md.md)]. You can use either a default or a named instance.
123123

124-
**Machine Learning Services and Language Extensions**: This option installs the Language Extensions component that support Java code execution.
124+
**Machine Learning Services and Language Extensions**: This option installs the Language Extensions component that supports Java code execution.
125125

126126
:::image type="content" source="../media/windows-java/2022/sql-server-2022-machine-learning-services-feature-selection.png" alt-text="Screenshot of instance features." lightbox="../media/windows-java/2022/sql-server-2022-machine-learning-services-feature-selection.png":::
127127

@@ -181,7 +181,7 @@ For local installations, you must run Setup as an administrator. If you install
181181

182182
1. Download the `java-lang-extension-windows-release.zip` file from [the Java language extension for SQL Server GitHub repo](https://github.com/microsoft/sql-server-language-extensions/releases). Download the latest Windows `java-lang-extension-windows.zip` file. If you haven't installed the default Java from SQL Server Setup, ensure that the JRE version matches the one that is downloaded from GitHub. If you prefer to use your own installed JRE version, you might need to compile `java-lang-extension` from GitHub source code.
183183

184-
1. Use [Azure Data Studio](/azure-data-studio/what-is-azure-data-studio) to connect to your SQL Server instance and run the following T-SQL command to register the Java language extension with [CREATE EXTERNAL LANGUAGE](../../t-sql/statements/create-external-language-transact-sql.md).
184+
1. Use the [MSSQL extension for Visual Studio Code](../../tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code.md) to connect to your SQL Server instance and run the following T-SQL command to register the Java language extension with [CREATE EXTERNAL LANGUAGE](../../t-sql/statements/create-external-language-transact-sql.md).
185185

186186
1. Modify the path in this statement to reflect the location of the downloaded language extension zip file (java-lang-extension-windows-release.zip) and the location your custom Java installation (`%ProgramFiles%\Python`).
187187

@@ -280,7 +280,9 @@ Check the installation status of the instance in the setup logs.
280280

281281
Use the following steps to verify that all components used to launch external script are running.
282282

283-
1. In SQL Server Management Studio or Azure Data Studio, open a new query window, and run the following statement:
283+
[!INCLUDE [connect-instance-client](../../includes/connect-instance-client.md)]
284+
285+
1. Connect to a database client, and run the following statement:
284286

285287
```sql
286288
EXECUTE sp_configure 'external scripts enabled';
@@ -292,7 +294,7 @@ Use the following steps to verify that all components used to launch external sc
292294

293295
## Additional configuration
294296

295-
If the verification step was successful, you can run Java Code from SQL Server Management Studio, Azure Data Studio, Visual Studio Code, or any other client that can send T-SQL statements to the server.
297+
If the verification step was successful, you can run Java code from any client that can send T-SQL statements to the server.
296298

297299
If you got an error when running the command, review the additional configuration steps in this section. You might need to make extra appropriate configurations to the service or database.
298300

0 commit comments

Comments
 (0)