giovedì 3 maggio 2012

Biztalk 2009 all cumulative update

BizTalk Server 2009 

Cumulative Update

BizTalk Server 2009 CU6
Version: 3.8.477.2

Release date: April 27, 2012

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2689457 Cumulative update package 6 for BizTalk Server 2009

BizTalk Server 2009 CU5
Version: 3.8.475.2

Release date: January 20, 2012

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2649852 Cumulative update package 5 for BizTalk Server 2009

BizTalk Server 2009 CU4

Version: 3.8.473.2

Release date: November 1, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2604321 Cumulative update package 4 for BizTalk Server 2009


BizTalk Server 2009 CU3

Version: 3.8.469.2

Release date: August 1, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2557149Cumulative update package 3 for BizTalk Server 2009


BizTalk Server 2009 CU2

Version: 3.8.463.2

Release date: March 17, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2497794 Cumulative update package 2 for BizTalk Server 2009

BizTalk Server 2009 CU1

Version: 3.8.454.2
Release date: December 8, 2010

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2429050 Cumulative update package 1 for BizTalk Server 2009

Biztalk 2010 cumulative update 1

BizTalk Server 2010 CU1

Version: 3.9.522.2 
Release date: May 21, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2497789 Cumulative update package 1 for BizTalk Server 2010

Biztalk 2010 cumulative update 2

BizTalk Server 2010 CU2
Version: 3.9.530.2 
Release date: August 31, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2573000 Cumulative update package 2 for BizTalk Server 2010

Biztalk 2010 cumulative update 3

BizTalk Server 2010 CU3
Version: 3.9.542.2 
Release date: November 30, 2011

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2617149 Cumulative update package 3 for BizTalk Server 2010

Biztalk 2010 cumulative update 4

BizTalk Server 2010 

Cumulative Update

BizTalk Server 2010 CU4
Version: 3.9.545.2 
Release date: February 28, 2012

For more information, click the following article number to view the article in the Microsoft Knowledge Base: 

2667310 Cumulative update package 4 for BizTalk Server 2010

giovedì 12 gennaio 2012

BizTalk: Database ‘BizTalkDTADb’ is full


Error:
The transaction log for database ‘BizTalkDTADb’ is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases (.Net SqlClient Data Provider)
Solution:
sp_helpdb ‘BizTalkDTADb’
ALTER DATABASE BiztalkDTADb
SET RECOVERY SIMPLE;
GO
DBCC SHRINKFILE (BiztalkDTADb_log, 1);
GO
sp_helpdb ‘BizTalkDTADb’
GO
ALTER DATABASE BiztalkDTADb
SET RECOVERY FULL
GO

BizTalk: Database ‘BizTalkMsgBoxDb’ is full


Error:
The transaction log for database ‘BizTalkMsgBoxDb’ is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases (.Net SqlClient Data Provider)

Solution:
sp_helpdb ‘BizTalkMsgBoxDb’
ALTER DATABASE BiztalkMsgBoxDb
SET RECOVERY SIMPLE;
GO
DBCC SHRINKFILE (BiztalkMsgBoxDb_log, 1);
GO
sp_helpdb ‘BizTalkMsgBoxDb’
GO
ALTER DATABASE BiztalkMsgBoxDb
SET RECOVERY FULL
GO