En ocasiones para mejorar desempeño en el proceso de publicación y suscripción de BizTalk Server junto con las tareas de mantenimiento (jobs de Sql Server) que ya posee BizTalk Server, es conveniente como en toda base de datos hacer un rebuild de indices a las bases de datos de BizTalk.
A continuación relaciono los procedimientos almacenados creados que son los únicos para soportar este proceso:
Base Datos Procedimiento Almacenado
BizTalkDTADb dtasp_RebuildIndexes
BizTalkMsgBoxDb bts_RebuildIndexes
BizTalk Server solo soporta rebuild de indices cuando este se encuentra completamente parado, por lo que se recomienda parar todos los host instances y el SQL Server Agent antes de ejecutar estos procedimientos.
Si se llegara presentar un error al ejecutar bts_RebuildIndexes, ver la documentación que hay sobre el mismo en el siguiente link:
Article ID: 917845 – View products that this article applies to.
On This PageSYMPTOMSIn Microsoft BizTalk Server, you experience blocking, deadlock conditions, or other Microsoft SQL Server issues when you try to connect to the BizTalkMsgBoxDb database.
CAUSEThis issue may occur if one or more of the following conditions are true:
RESOLUTIONTo resolve this issue, use one of the following methods.
Method 1: Disable the Auto Create Statistics option and the Auto Update Statistics optionTo resolve this issue, disable the Auto Create Statistics option and the Auto Update Statisticsoption on the BizTalkMsgBoxDb database in SQL Server. Method 2: Set the max degree of parallelism option to 1To resolve this issue, set the max degree of parallelismoption to 1 on the computer that is running SQL Server. Method 3: Do not rebuild an index when BizTalk Server is processing dataTo resolve this issue, do not run the bts_RebuildIndexes stored procedure or any SQL command that rebuilds an index in a BizTalk Server database when BizTalk Server is processing data. NoteDefragmenting an index in a BizTalk Server database is not supported. MORE INFORMATIONThe bts_RebuildIndexes stored procedureThe only supported method to rebuild an index in the BizTalkMsgBoxDb database is to run the bts_RebuildIndexes stored procedure. On BizTalk Server 2006 and later versions, you can run the dtasp_RebuildIndexes stored procedure to rebuild indexes in the BizTalkDTADb database. Most of the BizTalk indexes are GUID-based. Many tests have shown that as long as the tables are not scanned, GUID-based indexes can perform better than identity-based indexes for BizTalk-specific workloads. This may cause fragmentation. However, because data flows in and out of the tables at a steady pace, fragmentation may not cause any issues. If lots of data is expected to build up in the BizTalkMsgBox database, you can periodically rebuild indexes during scheduled downtime. The same guidelines apply to the tracking database. You can use the DBCC DBREINDEX SQL command to rebuild an index in the other BizTalk Server databases. For an example of how to use the DBCC DBREINDEX SQL command, right-click the bts_RebuildIndexes stored procedure, and then click Properties. Note Microsoft only supports rebuilding database indexes during BizTalk Server downtime. You should stop all host instances and SQL Server Agent before you rebuild an index. When you run the bts_RebuildIndexesstored procedure in BizTalk Server 2006 and later versions, you may receive one of the following error messages: Error message 1
Msg 5239, Level 16, State 1, Procedure bts_RebuildIndexes, Line 4
Unable to process object ID 674101442 (object ‘TrackingData’) This database consistency checker (DBCC) command does not support this kind of object. Error message 2
Msg 5239, Level 16, State 1, Procedure bts_RebuildIndexes, Line 4 Unable to process object ID 722101613 (object ‘TrackingData’) because this DBCC command does not support objects of this type.
This problem occurs because the TrackingData object is a view in BizTalk Server 2006 and later versions. To resolve this problem, do the following and then execute the bts_RebuildIndexesstored procedure:
PropertiesArticle ID: 917845 – Last Review: May 5, 2011 – Revision: 8.0
APPLIES TO
Give Feedback |
Article Translations |