3

我正在编排将数据从一个 SQL Server 数据库发送到另一个数据库。我能够接收数据但无法将其发送到另一个数据库。我做了一个发送端口来测试我得到的输入。我知道我没有从源模式中获取正确的数据。我已经从 Visual Studio 2010 测试了地图,它工作正常。但是我在事件查看器中遇到以下错误:

The adapter "SQL" raised an error message. Details "HRESULT="0x80040e14"     
Description="SQLOLEDB Error Description: Empty update, no updatable rows found  Transaction aborted "

 <Root xmlns:ns00="urn:schemas-microsoft-com:xml-updategram">
      <?MSSQLError HResult="0x80040e14" Source="Microsoft OLE DB Provider for SQL Server" Description="SQLOLEDB Error Description: Empty update, no updatable rows found  Transaction aborted "?>
 </Root>".

我想调试编排。我该怎么做?

4

1 回答 1

5

通过管理控制台,您可以查看暂停的编排并设置断点。编排的未来运行将在断点处保持,并再次通过管理控制台,您可以附加到编排并查看消息内容等信息。

于 2012-07-31T16:25:25.537 回答