The WCF-based SQL adapter does not require BizTalk Server to be installed. It can be used to communicate with SQL Server by using the following methods:
For a list of operations that can be performed with the WCF-based SQL adapter, see What Operations Can Be Performed Using the Adapter? Troubleshooting 1. To troubleshoot run-time issues, you can enable WCF tracing by modifying the <configuration> section in the BTSNTSvc.exe.config or BTSNTSvc64.exe.config file. Diagnostic Tracing and Message Logging provides an example. 2. You may notice deadlocks and/or blocking on the computer running SQL Server. By default, the WCF-based SQL adapter starts a serialized transaction. You can set the UseAmbientTransaction property to false and define the desired transaction isolation level within the stored procedure. 3. The legacy SQL adapter can be used to insert parent-child records, as described in Working With BizTalk Adapter for SQL Server. The WCF-based SQL adapter does not provide out-of-the box functionality for inserting parent-child records. As a result, you can use the approach described in Inserting parent child records with Identity column using WCF-SQL Adapter in one transaction. 4. When using the WCF-based SQL adapter on a receive location, you might see the following behavior:
System.Transactions.TransactionAbortedException: The transaction has aborted.
In these situations, you can set the ReceiveTimeout property to the maximum value, which is 24.20:31:23.6470000 (24 days). If there is a slow network or slow server on the send side, the SendTimeout property can also be increased. See Working with BizTalk Adapter for SQL Server Binding Properties. 5. You should use the new WCF-based SQL adapter. The BizTalk Adapter Pack Migration Tool available at http://www.microsoft.com/download/details.aspx?id=7840 can help developers migrate from the legacy SQL adapter to the new WCF-based adapter.
Additional Links BizTalk Adapter Pack 2010 - WCF SQL Adapter BizTalk Server 2010 Adapter Pack - SQL Azure BizTalk: WCF Adapters and Troubleshooting