turn off SQL Server High availbility

NeophyteSQL 241 Reputation points
2020-09-08T22:19:37.827+00:00

Hi all,

Our SQL Server instance has Always on high availability groups on for all user databases , the secondary server windows OS crashed.

we have decided to shut down always on high availability for all user databases.

Please provide what is the best way to accomplish this.

SQL Server | Other
0 comments No comments
{count} votes

Accepted answer
  1. CathyJi-MSFT 22,396 Reputation points Microsoft External Staff
    2020-09-09T01:46:56.413+00:00

    Hi @sqlniks-7244,

    All user databases add to SQL server Always On availability group? Please remove SQL availability group to remove always on high availability for all user databases. If I misunderstood your issue, please let me know.

    On primary replica, using SSMS UI or T-SQL as below to remove SQL Server Always On Availability Group Configuration.

    23381-annotation-2020-09-09-092736.jpg

    DROP AVAILABILITY GROUP AG1;  
    

    After this operation, please refresh the "Availability Group" folder.

    Please refer to [Remove an availability group (SQL Server)][2] to get more information.

    Best regards,
    Cathy


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    [2]: https://learn.microsoft.com/en-us/sql/database-engine/availability-groups/windows/remove-an-availability-group-sql-server?view=sql-server-ver15 [4]: https://learn.microsoft.com/en-us/sql/database-engine/availability-groups/windows/remove-a-primary-database-from-an-availability-group-sql-server?view=sql-server-ver15

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.