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: articles/azure-netapp-files/azacsnap-configure-database.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: azure-netapp-files
5
5
author: Phil-Jensen
6
6
ms.service: azure-netapp-files
7
7
ms.topic: how-to
8
-
ms.date: 05/15/2024
8
+
ms.date: 02/01/2025
9
9
ms.author: phjensen
10
10
---
11
11
@@ -685,6 +685,29 @@ logout
685
685
Connection to <serverAddress> closed.
686
686
```
687
687
688
+
# [Microsoft SQL Server](#tab/mssql)
689
+
690
+
The snapshot tools issue commands to the Microsoft SQL Server database directly to enable and disable backup mode.
691
+
692
+
AzAcSnap connects directly to Microsoft SQL Server using the provided connect-string to issue SQL commands, such as `ALTER SERVER CONFIGURATION SET SUSPEND_FOR_SNAPSHOT_BACKUP = ON` or `ALTER SERVER CONFIGURATION SET SUSPEND_FOR_SNAPSHOT_BACKUP = OFF`. The connect-string will determine if the installation is on the database server or a centralized "backup" server. Typical installations of AzAcSnap would be onto the database server to ensure features such as flushing file buffers can work as expected. If AzAcSnap has been installed onto the database server, then be sure the user running azacsnap has the required permissions.
693
+
694
+
##### `azacsnap` user permissions
695
+
696
+
Refer to [Get started with Azure Application Consistent Snapshot tool](azacsnap-get-started.md)
697
+
The `azacsnap` user should have permissions to put Microsoft SQL Server into backup mode, and have permissions to flush I/O buffers to the volumes configured.
698
+
699
+
Configure (`.\azacsnap.exe -c configure`) with the correct values for Microsoft SQL Server and test (`.\azacsnap.exe -c test --test mssql`) azacsnap database connectivity.
700
+
Run the `azacsnap` test command
701
+
```shell
702
+
.\azacsnap.exe -c test --test mssql
703
+
```
704
+
705
+
```output
706
+
BEGIN : Test process started for 'mssql'
707
+
BEGIN : Database tests
708
+
PASSED: Successful connectivity to MSSQL version 16.00.1115
709
+
END : Test process complete for 'mssql'
710
+
```
688
711
689
712
---
690
713
@@ -819,6 +842,10 @@ Apply the following changes to the Oracle database to allow for monitoring by th
819
842
820
843
No special database configuration is required for Db2 because you're using the instance user's local operating system environment.
821
844
845
+
# [Microsoft SQL Server](#tab/mssql)
846
+
847
+
No special database configuration is required for Microsoft SQL Server as we are using the User's local operating system environment.
0 commit comments