Reputation: 53
I have three tasks to do in my BizTalk orchestration
Example data
stored procedure [databasename].[storedprocedurename] 'param1Value', 'param2Value'
table [databasename].[tablename] (id integer,desc nvarchar(50))
UPDATE
Rephrase: Tasks are
How to call stored procedure from BizTalk orchestration with parameters from incoming XML message
How to do insert into DB table from orchestration (and get back result of operation)
How to do update with dynamic "where' value conditions from incoming xml
Upvotes: 1
Views: 5183
Reputation: 21641
There is full documentation here: Executing Stored Procedures in SQL Server by Using BizTalk Server
WHERE
clause(s).BTS.Operation
).NULL
is either set to xsi:nil=true
(use the Nil
functoid), or that it's not present in the destination (use a Value Mapping
functoid, or a method to remove empty nodes in a pipeline or helper class).SELECT
or via OUTPUT
parameters) or XML Polling (if your procedure returns a resultset using FOR XML
). Avoid vanilla procedure calls unless you don't expect to deal with return data from the procedure.Upvotes: 5