上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页
摘要: 其实也不是什么高级的技术了,不过也是才知道,原来SQL Adapter可以接收循环数据(一直以为只能接收单条记录,所以一直搞什么信封拆分,看来是多余的)1.存储过程create procedure ins_sys_SPUser@Name varchar(20),@Password varchar(20),@Email varchar(20)asinsert into sys_SPUser(Name... 阅读全文
posted @ 2007-06-19 22:03 upzone 阅读(1122) 评论(3) 推荐(0) 编辑
摘要: 关于Execute Receive Pipeline的问题 阅读全文
posted @ 2007-06-19 12:11 upzone 阅读(654) 评论(6) 推荐(0) 编辑
摘要: 今天做了一个接收文件然后用SQL Adapter调用sp insert的例子 CREATE PROCEDURE SP_Demo @Name varchar(30), @Mail varchar(30) as begin set nocount on; insert into Person(Name,Mail) values(@Name,@Age) select scope_identity()... 阅读全文
posted @ 2007-06-14 14:02 upzone 阅读(769) 评论(2) 推荐(0) 编辑
摘要: DataBase Functoids里除了DB Lookup,Error Return和Value Extractor之外还有几个如 Get CommonID,Get CommonValue,Get ApplicationID,Get ApplicationValue,Set CommonID,FormatMessage等等几个 1.Cross Reference表的建立 The c... 阅读全文
posted @ 2007-06-08 18:16 upzone 阅读(610) 评论(2) 推荐(0) 编辑
摘要: Lately I tried to redeploy a BizTalk 2006 solution from Visual Studio 2005. Unfortunately I was confronted with the following error message “Could not change the bindings for orchestration '.', Versio... 阅读全文
posted @ 2007-06-08 12:36 upzone 阅读(789) 评论(2) 推荐(0) 编辑
摘要: Here are a few scripts / stored procedures that most of the BizTalk newbies would love to know. These scripts are very useful in a development environment to clean up your MessageBox and Tracking dat... 阅读全文
posted @ 2007-06-01 14:03 upzone 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 流程int g_i = 0; int g_k = 0;Message msg; receive(msg)scope{ body() { scope { body { g_i=1; g_k=1; } Compensation1 { g_k = 2; ... 阅读全文
posted @ 2007-06-01 13:20 upzone 阅读(350) 评论(1) 推荐(0) 编辑
摘要: 在做Map时候,Link线复杂的时候,一般会分页来区分,免得"众里寻她千百度",不过有时候需要把某页中的某些Functoids归类到其他页中,一直不知道如何处理,网上看到有人修改btm文件可以实现。今天翻阅BizTalk SDK Helper发现原来这么简单: 使用网格底部的“移至最左端”、“左移”、“右移”和“移至最右端”箭头,可显示相应选项卡,该选项卡显示要移动到的网格页的名称。 单击显示... 阅读全文
posted @ 2007-05-31 11:08 upzone 阅读(224) 评论(0) 推荐(0) 编辑
摘要: from:http://support.microsoft.com/default.aspx?scid=kb;... "Virtual PC Could Not Open Its Emulated Ethernet Switch Driver" Error Message After You Install a Virtual PC Update View products that this... 阅读全文
posted @ 2007-05-30 11:23 upzone 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 今天从MS Connect上down了BizTalk 2006 R2 beta安装看看,做了差异盘,准备安装在虚机里,刚开机发现机器名重名,没办法,用的是同一个母盘,想当然改机器名了,结果这回麻烦了,sql server里的job起不来了,后来查到,原来数据库中的server name没有改过来 Error: Error 14274 Cannot add, update or delete a j... 阅读全文
posted @ 2007-05-29 17:19 upzone 阅读(307) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 24 下一页