使用 Microsoft 登入
登入或建立帳戶。
您好:
選取其他帳戶。
您有多個帳戶
選擇您要用來登入的帳戶。
英文
很抱歉,此文章目前沒有您所使用語言的版本。

Microsoft distributes Microsoft SQL Server 2012 fixes as one downloadable file. Because the fixes are cumulative, each new release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2012 fix release.

Symptoms

Consider the following scenario:

  • You create an availability group by using the New Availability Group Wizard in Microsoft SQL Server Management Studio for Microsoft SQL Server 2012.

  • You select the Full or the Join only data synchronization preference on the Select Data Initial Synchronization page.

  • On the Summary page, you click Script in order to receive automatically generated scripts.

In this scenario, the generated scripts skip the steps that join an existing secondary database to the availability group. Therefore, if you try to use these scripts to create an availability group, the availability group cannot come online.

Resolution

Service pack information for SQL Server 2012

To resolve this problem, obtain the latest service pack for SQL Server 2012. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

2755533 How to obtain the latest service pack for SQL Server 2012

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Workaround

To work around this issue, manually add the missing steps. Specifically, add the "ALTER DATABASE DatabaseName SET HADR AVAILBILLITY GROUP" command for each availability database and secondary replica that is defined in the availability group. For example, you add the following steps:

-- On the server instance that hosts the secondary replica, 

-- join each secondary database to the availability group:

:Connect <<secondary replica 1>>

ALTER DATABASE MyDb1 SET HADR AVAILABILITY GROUP = MyAG;

GO

ALTER DATABASE MyDb2 SET HADR AVAILABILITY GROUP = MyAG;

GO

:Connect <<secondary replica 2>>

ALTER DATABASE MyDb1 SET HADR AVAILABILITY GROUP = MyAG;

GO

ALTER DATABASE MyDb2 SET HADR AVAILABILITY GROUP = MyAG;

GO

More Information

For more information about how to join a secondary database to an availability group, go to the following MSDN website:

How to join a secondary database to an availability groupFor more information about how to use the New Availability Group Wizard, go to the following MSDN website:

How to use the New Availability Group WizardFor more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates

需要更多協助嗎?

想要其他選項嗎?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

這項資訊有幫助嗎?

以下何者是您會在意的事項?
按下 [提交] 後,您的意見反應將用來改善 Microsoft 產品與服務。 您的 IT 管理員將能夠收集這些資料。 隱私權聲明。

感謝您的意見反應!

×