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/includes/virtual-machines-best-practices-storage.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,3 +34,4 @@ ms.topic: include
34
34
- Enable the [SQL Best Practices Assessment](../virtual-machines/windows/sql-assessment-for-sql-vm.md) to identify possible performance issues and evaluate that your SQL Server VM is configured to follow best practices.
35
35
- Review and monitor disk and VM limits using [Storage IO utilization metrics](/azure/virtual-machines/disks-metrics#storage-io-utilization-metrics).
36
36
-[Exclude SQL Server files](/troubleshoot/sql/database-engine/security/antivirus-and-sql-server) from antivirus software scanning, including data files, log files, and backup files.
37
+
-[Resize the storage pool appropriately](../virtual-machines/windows/performance-guidelines-best-practices-storage.md#resize-storage-pools-appropriately).
Copy file name to clipboardExpand all lines: azure-sql/managed-instance/frequently-asked-questions-faq.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,7 @@ sections:
169
169
170
170
- question: Can I change DNS zone prefix?
171
171
answer: |
172
-
Yes, the SQL Managed Instance default DNS zone *.database.windows.net* can be changed with your own. However, the managed instance hostname part of its FQDN should remain the same.
172
+
Yes, the SQL Managed Instance default DNS zone `.database.windows.net` can be changed with your own. However, the managed instance hostname part of its FQDN, including the randomized subzone (ex: `sqlmiFQDN.randomized-subzone` before the `.database.windows.net`) should remain the same.
173
173
174
174
To use another DNS zone instead of the default, for example, *.contoso.com*:
175
175
- Use SQL Server Client Network Utility (CliConfg) to define an alias. You can use either just the managed instance hostname, or the managed instance hostname followed by a custom domain name. The CliConfg tool just adds alias in the registry under "HKLM\SOFTWARE\Microsoft\MSSQLServer\Client\ConnectTo" or "HKLM\SOFTWARE\WOW6432Node\Microsoft\MSSQLServer\Client\ConnectTo" depending if you use the 64-bit version (C:\Windows\System32\cliconfg.exe) or the 32-bit version (C:\Windows\SysWOW64\cliconfg.exe), so it can be done using group policy or a script as well. Use both to ensure 32-bit and 64-bit programs can resolve the alias.
Copy file name to clipboardExpand all lines: azure-sql/managed-instance/point-to-site-p2s-configure.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Connect to Azure SQL Managed Instance with SQL Server Management St
5
5
author: zoran-rilak-msft
6
6
ms.author: zoranrilak
7
7
ms.reviewer: mathoma, bonova, jovanpop
8
-
ms.date: 09/27/2023
8
+
ms.date: 04/27/2025
9
9
ms.service: azure-sql-managed-instance
10
10
ms.subservice: deployment-configuration
11
11
ms.topic: quickstart
@@ -17,6 +17,12 @@ ms.custom: mode-other
17
17
18
18
This quickstart teaches you how to connect to Azure SQL Managed Instance by using [SQL Server Management Studio](/sql/ssms/sql-server-management-studio-ssms) (SSMS) from an on-premises client computer over a point-to-site connection. For information about point-to-site connections, see [About Point-to-Site VPN](/azure/vpn-gateway/point-to-site-about).
19
19
20
+
## Considerations
21
+
22
+
This quickstart demonstrates a quick and easy way to connect to Azure SQL Managed Instance. Consider the following:
23
+
- The steps in this article are for demonstration purposes only, and not intended for Enterprise solutions. For production workloads, use a [site-to-site](/azure/vpn-gateway/tutorial-site-to-site-portal), or [ExpressRoute](/azure/expressroute/) connection instead of a point-to-site connection.
24
+
- The procedure to attach the VPN gateway in this quickstart is intended for a single user to get started with Azure SQL Managed Instance quickly. This VPN uses a certificate-based authentication method tied to the user that establishes the VPN connection. A different user is unable to use the same VPN gateway to connect to SQL Managed Instance without first installing the client certificate that was generated by the first user, which is out of scope for this quickstart, but documented in [Azure point-to-site VPN](/azure/vpn-gateway/point-to-site-about). Additional users following the steps in this quickstart for the same SQL managed instance invalidate the previous user's VPN connection, which prevents them from connecting to the instance.
25
+
20
26
## Prerequisites
21
27
22
28
This quickstart:
@@ -52,7 +58,7 @@ This quickstart:
52
58
1. Paste the script in your PowerShell window and provide the required parameters. The values for `<subscriptionId>`, `<resourceGroup>`, and `<virtualNetworkName>` should match the ones that you used for the [Create a managed instance](instance-create-quickstart.md) quickstart. The value for `<certificateNamePrefix>` can be a string of your choice.
53
59
54
60
> [!NOTE]
55
-
> If you get an error about parsing the Internet Explorer engine, either launch Internet Explorer to complete the initial set up or upgrade to a newer version of PowerShell.
61
+
> If you get an error about parsing the Internet Explorer engine, either launch Internet Explorer to complete the initial setup or upgrade to a newer version of PowerShell.
Copy file name to clipboardExpand all lines: azure-sql/managed-instance/tempdb-configure.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,8 +171,8 @@ The following screenshot shows an example output:
171
171
`tempdb` max size is the limit after which your `tempdb` can't grow further.
172
172
173
173
`tempdb` max size in SQL Managed Instance has the following limitations:
174
-
- In the General Purpose service tier, the maximum size for `tempdb` is limited to 24 GB/vCore (96-1920 GB), and the log file is 120 GB.
175
-
- In the Business Critical service tier, `tempdb` competes with other databases for resources, so the reserved storage is shared between `tempdb` and other databases. The max size of the `tempdb` log file is 2 TB.
174
+
- In the General Purpose service tier, the maximum size for `tempdb` is limited to 24 GB/vCore (96-1920 GB). The max size of the`tempdb` log file is 120 GB.
175
+
- In the Business Critical service tier, `tempdb` competes with other databases for resources, so the reserved storage is shared between `tempdb` and other databases up to the max storage size allocated to the instance. The max size of the `tempdb` log file is 2 TB.
176
176
177
177
`tempdb` files grow until they reach either the maximum limit allowed by the service tier, or by the manually configured max `tempdb` file size.
178
178
@@ -256,7 +256,8 @@ The following table defines limits for various `tempdb` configuration settings:
|Max size of `tempdb` data files | - In the General Purpose service tier: 24 GB/vCore up to 1920 GB total <br /> In the Business Critical service tier: Up to the storage size |
260
+
|Max size of `tempdb` log files | - In the General Purpose service tier: 120 GB <br /> In the Business Critical service tier: 2 TB |
0 commit comments