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: azure-sql/virtual-machines/linux/sql-server-on-linux-vm-what-is-iaas-overview.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Overview of SQL Server on Azure Virtual Machines for Linux
3
3
description: Learn about how to run full SQL Server editions on Azure Virtual Machines for Linux. Get direct links to all Linux SQL Server VM images and related content.
4
4
author: MashaMSFT
5
5
ms.author: mathoma
6
-
ms.date: 09/15/2025
6
+
ms.date: 04/02/2026
7
7
ms.service: azure-vm-sql-server
8
8
ms.subservice: service-overview
9
9
ms.topic: overview
@@ -61,6 +61,14 @@ When you configure SQL Server on Linux, you install the Database Engine package
61
61
62
62
## Related products and services
63
63
64
+
### AI capabilities and features
65
+
66
+
-[Intelligent applications and AI in SQL Server](/sql/sql-server/ai/artificial-intelligence-intelligent-applications?view=azuresqldb-mi-current&preserve-view=true)
67
+
-[Multi-model capabilities in Azure SQL](../../multi-model-features.md)
68
+
-[Connect to REST API endpoints for a SQL database](/azure/data-api-builder/concept/rest/overview)
69
+
-[Connect to GraphQL endpoints for a SQL database](/azure/data-api-builder/concept/graphql/overview)
Copy file name to clipboardExpand all lines: azure-sql/virtual-machines/windows/sql-server-on-azure-vm-iaas-what-is-overview.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to run full editions of SQL Server on Azure Virtual Machi
4
4
author: MashaMSFT
5
5
ms.author: mathoma
6
6
ms.reviewer: randolphwest
7
-
ms.date: 11/18/2025
7
+
ms.date: 04/02/2026
8
8
ms.service: azure-vm-sql-server
9
9
ms.subservice: service-overview
10
10
ms.topic: overview
@@ -136,6 +136,12 @@ The Customer Experience Improvement Program (CEIP) is enabled by default. This p
136
136
137
137
Since SQL Server on Azure VMs is integrated into the Azure platform, review resources from related products and services that interact with the SQL Server on Azure VM ecosystem:
138
138
139
+
-**AI capabilities and features**:
140
+
-[Intelligent applications and AI in SQL Server](/sql/sql-server/ai/artificial-intelligence-intelligent-applications?view=azuresqldb-mi-current&preserve-view=true)
141
+
-[Multi-model capabilities in Azure SQL](../../multi-model-features.md)
142
+
-[Connect to REST API endpoints for a SQL database](/azure/data-api-builder/concept/rest/overview)
143
+
-[Connect to GraphQL endpoints for a SQL database](/azure/data-api-builder/concept/graphql/overview)
-**Storage**: [Introduction to Azure Storage](/azure/storage/common/storage-introduction)
141
147
-**Networking**: [Azure Virtual Network overview](/azure/virtual-network/virtual-networks-overview), [IP addresses in Azure](/azure/virtual-network/ip-services/public-ip-addresses), [Create a Fully Qualified Domain Name in the Azure portal](/azure/virtual-machines/create-fqdn)
Copy file name to clipboardExpand all lines: docs/includes/tools.md
+3-1Lines changed: 3 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
author: WilliamDAssafMSFT
3
3
ms.author: wiassaf
4
-
ms.date: 03/09/2026
4
+
ms.date: 04/02/2026
5
5
ms.service: sql
6
6
ms.topic: include
7
7
---
@@ -30,6 +30,8 @@ Recommended tools:
30
30
-**[SQL Server Management Studio (SSMS)](../tools/overview-sql-tools.md#ssms)**: Create objects, run queries, and perform lightweight tasks
31
31
-**[SQL Server Data Tools (SSDT)](../tools/overview-sql-tools.md#ssdt)** for Visual Studio: Schema and project-based development
32
32
-**[.NET libraries](/azure/azure-sql/database/connect-query-dotnet-core)**: Programmatic access using libraries such as `Microsoft.Data.SqlClient`
33
+
-**[Data API builder](/azure/data-api-builder/)**: Connect apps to the database over [automatic REST](/azure/data-api-builder/concept/rest/overview) or [GraphQL endpoints](/azure/data-api-builder/concept/graphql/overview).
34
+
-**[SQL MCP Server](/azure/data-api-builder/mcp/overview)**: Connect custom and [Foundry agents](/azure/data-api-builder/mcp/quickstart-azure-ai-foundry) to the database with a secure MCP Server.
Copy file name to clipboardExpand all lines: docs/integration-services/fabric-integration/integrate-fabric-sql-database.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@ title: "Tutorial: Integrate SSIS with SQL Database in Microsoft Fabric"
3
3
description: Learn how to integrate SSIS with Fabric SQL Database
4
4
author: chugugrace
5
5
ms.author: chugu
6
-
ms.reviewer: randolphwest
7
-
ms.date: 02/02/2026
6
+
ms.reviewer: randolphwest, mathoma
7
+
ms.date: 04/06/2026
8
8
ms.service: sql
9
9
ms.subservice: integration-services
10
10
ms.topic: tutorial
@@ -44,8 +44,32 @@ Use the Microsoft OLE DB Driver for SQL Server (MSOLEDBSQL) and configure:
44
44
45
45
:::image type="content" source="media/ole-db-connection-2.png" alt-text="Screenshot of OLE DB Connection Manager part 2." lightbox="media/ole-db-connection-2.png":::
46
46
47
+
## Run in Fabric with Invoke SSIS Package activity
48
+
49
+
When running in Fabric with the [Invoke SSIS Package activity](/fabric/data-factory/invoke-ssis-package-activity), if your package uses the `DontSaveSensitive` protection level, credentials aren't persisted in the package file. You supply them at runtime through the **Connection Managers** tab of the Invoke SSIS Package activity. Alternatively, you can set the package protection level to `EncryptSensitiveWithPassword`, which encrypts credentials inside the package. You then provide the package password in the Invoke SSIS Package activity at runtime instead of supplying individual connection manager credentials.
50
+
51
+
### Steps to override connection for DontSaveSensitive
52
+
53
+
1. In the Invoke SSIS Package activity, select the **Connection Managers** tab.
54
+
1. Select **+ New** to add a connection manager override entry.
55
+
1. Set the **Name** field to match your OLE DB Connection Manager name in the package.
56
+
1. Fill in the connection properties, including **User name** (Application/client ID) and **Password** (client secret) for service principal authentication.
57
+
1. Repeat for each connection manager that requires credentials.
58
+
59
+
:::image type="content" source="media/activity-configuration-manager.png" alt-text="Screenshot of the Connection Managers tab in the Invoke SSIS Package activity." lightbox="media/activity-configuration-manager.png":::
60
+
61
+
### Steps to provide package password for EncryptSensitiveWithPassword
62
+
63
+
1. In the SSIS package, set the **ProtectionLevel** property to `EncryptSensitiveWithPassword` and assign a package password. This encrypts all sensitive data (connection strings, credentials) inside the package file.
64
+
1. In the Invoke SSIS Package activity, go to the **Settings** tab.
65
+
1. In the **Encryption password** field, enter the same password used to encrypt the package.
66
+
1. The runtime decrypts the embedded credentials automatically; no individual connection manager overrides are needed.
67
+
68
+
:::image type="content" source="media/activity-package-encryption.png" alt-text="Screenshot of the package encryption in the Invoke SSIS Package activity." lightbox="media/activity-package-encryption.png":::
0 commit comments