Skip to content

Commit 5fd3df4

Browse files
Merge pull request #36604 from rwestMSFT/rw-0211-fix-links
Fix links
2 parents 54e7b9f + 3afe962 commit 5fd3df4

5 files changed

Lines changed: 7 additions & 13 deletions

File tree

docs/machine-learning/data-exploration/python-dataframe-pandas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ monikerRange: ">=sql-server-2017 || >=sql-server-linux-ver15 || =azuresqldb-mi-c
1717
# Insert data from a SQL table into a Python pandas dataframe
1818
[!INCLUDE[SQL Server SQL DB SQL MI FabricSQLDB](../../includes/applies-to-version/sql-asdb-asdbmi-fabricsqldb.md)]
1919

20-
This article describes how to insert SQL data into a [pandas](https://pandas.pydata.org/) dataframe using the [mssql-python](/sql/connect/python/mssql-python/python-sql-driver-mssql-python) driver in Python. The rows and columns of data contained within the dataframe can be used for further data exploration.
20+
This article describes how to insert SQL data into a [pandas](https://pandas.pydata.org/) dataframe using the [mssql-python](../../connect/python/mssql-python/python-sql-driver-mssql-python.md) driver in Python. The rows and columns of data contained within the dataframe can be used for further data exploration.
2121

2222
## Prerequisites
2323

docs/machine-learning/data-exploration/python-dataframe-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ monikerRange: ">=sql-server-2017 || >=sql-server-linux-ver15 || =azuresqldb-mi-c
1818

1919
[!INCLUDE [SQL Server SQL DB SQL MI FabricSQLDB](../../includes/applies-to-version/sql-asdb-asdbmi-fabricsqldb.md)]
2020

21-
This article describes how to insert a [pandas](https://pandas.pydata.org/) dataframe into a SQL database using the [mssql-python](/sql/connect/python/mssql-python/python-sql-driver-mssql-python) driver in Python.
21+
This article describes how to insert a [pandas](https://pandas.pydata.org/) dataframe into a SQL database using the [mssql-python](../../connect/python/mssql-python/python-sql-driver-mssql-python.md) driver in Python.
2222

2323
## Prerequisites
2424

docs/relational-databases/security/networking/tds-8.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ To use TDS 8.0, [!INCLUDE [sssql22-md](../../../includes/sssql22-md.md)] added `
102102
- [Microsoft OLE DB Driver for SQL Server](../../../connect/oledb/download-oledb-driver-for-sql-server.md) version 19.2.0 or higher
103103
- [Microsoft JDBC Driver for SQL Server](../../../connect/jdbc/microsoft-jdbc-driver-for-sql-server.md) version 11.2.0 or higher
104104
- [Microsoft Drivers for PHP for SQL Server](../../../connect/php/microsoft-php-driver-for-sql-server.md) version 5.10 or higher
105-
- [Python SQL Driver - mssql-python](/sql/connect/python/mssql-python/python-sql-driver-mssql-python)
105+
- [Python SQL Driver - mssql-python](../../../connect/python/mssql-python/python-sql-driver-mssql-python.md)
106106

107107
In order to prevent a man-in-the-middle attack with `strict` connection encryption, users can't set the `TrustServerCertificate` option to `true` and allow any certificate the server provided. Instead, users would use the `HostNameInCertificate` option to specify the certificate `ServerName` that should be trusted. The certificate supplied by the server would need to pass the certificate validation. For more information on certificate validation, see [Certificate requirements for SQL Server](../../../database-engine/configure-windows/certificate-requirements.md)
108108

@@ -119,4 +119,3 @@ The following options are added to connection strings to encrypt communication:
119119
## Related content
120120

121121
- [Connect to SQL Server with strict encryption](connect-with-strict-encryption.md)
122-

docs/t-sql/data-types/vector-data-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ Example of selecting **vector** data from a table:
390390

391391
### [Python](#tab/python)
392392

393-
This sample is using Python with the [mssql-python driver](/sql/connect/python/mssql-python/python-sql-driver-mssql-python). Applications can write and read vector data using `json.loads` and `json.dumps`:
393+
This sample is using Python with the [mssql-python driver](../../connect/python/mssql-python/python-sql-driver-mssql-python.md). Applications can write and read vector data using `json.loads` and `json.dumps`:
394394

395395
```python
396396
import json

docs/tools/whats-happening-azure-data-studio.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ For import, export, and assessment work:
4040
- Use [SqlPackage](sqlpackage/sqlpackage.md) and the [Data-tier Application (Preview)](visual-studio-code-extensions/mssql/mssql-data-tier-application.md) for DACPAC tasks, or use bulk insert and PowerShell for flat-file import.
4141
- Run the [migration assessment](../sql-server/azure-arc/migration-assessment.md) for SQL Server enabled by Azure Arc.
4242

43-
### [Data analyst](#tab/analyst)
44-
45-
Install the [Polyglot Notebooks extension in Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode) to continue working with interactive Transact-SQL + Markdown notebooks.
46-
4743
### [Cross-database developer](#tab/xplat)
4844

4945
Replace Azure Data Studio extensions with their Visual Studio Code equivalents:
@@ -125,10 +121,9 @@ Azure Data Studio users have diverse needs, from connecting to Azure SQL databas
125121
| Database administration | Tools for managing databases on Windows. | [SQL Server Management Studio (SSMS)](/sql/ssms/) |
126122
| Schema | Compare and synchronize database schemas. | SQL Server Data Tools (SSDT). In development for MSSQL extension for Visual Studio Code. |
127123
| Flat-file import | Import `.txt` and `.csv` files into databases. | Bulk insert / PowerShell. In development for MSSQL extension for Visual Studio Code. |
128-
| DACPAC import/export | Deploy and extract DACPAC files. | SqlPackage CLI |
129-
| SQL Server assessment | Assess an existing SQL Server data estate to prepare for migration. | [Assess migration readiness with SQL Server enabled by Azure Arc](/sql/sql-server/azure-arc/migration-assessment). |
124+
| DACPAC import/export | Deploy and extract DACPAC files. | [Data-tier Application (Preview)](visual-studio-code-extensions/mssql/mssql-data-tier-application.md) and SqlPackage CLI |
125+
| SQL Server assessment | Assess an existing SQL Server data estate to prepare for migration. | [Assess migration readiness with SQL Server enabled by Azure Arc](../sql-server/azure-arc/migration-assessment.md). |
130126
| Azure SQL migration | Migrate SQL Server to Azure SQL. | Alternative migration tools for [Azure SQL Managed Instance](/data-migration/sql-server/managed-instance/overview#migration-tools), [SQL Server on Azure VMs](/data-migration/sql-server/virtual-machines/overview#migrate), and [Azure SQL Database](/data-migration/sql-server/database/overview#migration-tools). |
131-
| Notebooks | SQL + Markdown interactive documents. | Polyglot Notebooks in Visual Studio Code. |
132127
| SQL Database Projects | Create, manage, and deploy SQL database projects. | Fully supported in the MSSQL extension for Visual Studio Code and Visual Studio. |
133128

134129
### Alternative Azure Data Studio capabilities
@@ -143,7 +138,7 @@ For users who relied on Azure Data Studio for non-SQL Server-related tasks (for
143138

144139
| Azure Data Studio extension | Description | Replacement |
145140
| --- | --- | --- |
146-
| **PostgreSQL** | Manage PostgreSQL databases. | [PostgreSQL extension for Visual Studio Code preview](/azure/postgresql/extensions/vs-code-extension/overview) |
141+
| **PostgreSQL** | Manage PostgreSQL databases. | [PostgreSQL extension for Visual Studio Code](/azure/postgresql/extensions/vs-code-extension/overview) |
147142
| **MySQL** | Manage MySQL databases. | Pending announcement |
148143
| **Azure Cosmos DB** | Manage Azure Cosmos DB API for MongoDB. | [Azure Databases for Visual Studio Code](/azure/cosmos-db/visual-studio-code-extension) |
149144
| **Azure Cosmos DB Migration for MongoDB** | Migrate MongoDB to Azure Cosmos DB. | Pending announcement |

0 commit comments

Comments
 (0)