0

我正在使用引用的链接服务器与存储过程作斗争。链接服务器可通过端口转发通过 Internet 访问 - 因此没有 VPN、LAN。

服务器在两侧MS SQL SERVER 2008 EE v. 10.0.5512

配置链接服务器,DTC:

还不能插入图片:(

enable promotion of distributed transaction = false
RPC = false
RPC out = false

Network DTC Access checked
Allow inbound true
Allow outbound true
No authentication Required

存储过程看起来像

CREATE PROCEDURE [dbo].[spSynchronizeArticles] 
    -- Add the parameters for the stored procedure here
(
    @pDebug bit,
    @siteId bigint
)
AS
BEGIN

  SELECT *
  FROM [LinkedServer].[MyDatabase].dbo.Storages 
  WHERE Storage.siteId = @siteId

  RETURN 0

END

如您所见,这里没有交易。如果我是正确的,则每次调用链接服务器时,MS DTC 都会创建事务。

我像这样从 c# 调用这个过程

  SqlCommand sqlCmd = new SqlCommand("spSynchronizeArticles");
  sqlCmd.CommandType = CommandType.StoredProcedure;
  sqlCmd.Parameters.AddWithValue("@pDebug", false);
  sqlCmd.Parameters.AddWithValue("@siteId", siteId);

  SqlParameter returnValue = new SqlParameter("returnVal", SqlDbType.Int);
  returnValue.Direction = ParameterDirection.ReturnValue;
  sqlCmd.Parameters.Add(returnValue);

  using (SqlConnection conn = new SqlConnection(Context.LocalData.ConnectionString))
  {
    try
    {
      try
      {
        conn.Open();
        sqlCmd.Connection = conn;
        sqlCmd.ExecuteScalar();

        return Convert.ToInt32(returnValue.Value);
      }
      catch (Exception ex)
      {
        //log exception to file
        return -1;
      }
    }
    finally
    {
      conn.Close();
    }
  }
}

此 c# 代码在无限时调用以同步数据。在同一个线程中,虽然还有另一种方法称为从文件中获取数据(如果存在)并将它们保存到本地数据库。

SynchronizeArticles 方法调用频率更高,一切正常,但一旦调用从文件中获取数据的方法,SynchronizeArticles 总是抛出此异常

System.Data.SqlClient.SqlException (0x80131904):服务器“LocalServer\SQLEXPRESS2008”上的 MSDTC 不可用。

该方法正在使用事务,看起来像

public void FillDataFromViewWithTrans(DataTable dt, string wherePhrase)
    {
      dt.Rows.Clear();
      SqlCommand sql = new SqlCommand(String.Format(@"SELECT * 
FROM SomeView
{0}", String.IsNullOrEmpty(wherePhrase) ? String.Empty : "WHERE " + wherePhrase));


      using (SqlConnection conn = new SqlConnection(Context.LocalData.ConnectionString))
      {
        SqlTransaction trans = null;
        try
        {
          try
          {
            conn.Open();
            trans = conn.BeginTransaction(IsolationLevel.RepeatableRead);
            sql.Transaction = trans;
            sql.Connection = conn;

            SqlDataAdapter dA = new SqlDataAdapter(sql);

            dA.Fill(dt);

            trans.Commit();
          }
          catch (Exception ex)
          {
            trans.Rollback();
            //log exception to file
            return;
          }
        }
        finally
        {
          conn.Close();
        }
      }
    }

这只是插图示例:)

告诉我我错过了什么。

此外,我在使用 MS DTC 时遇到了各种错误

  1. 从 C# 代码中,当一些用户手动调用该过程时,他们有时会遇到异常:

无法执行该操作,因为 OLE DB 提供程序“SQLOLEDB”无法开始分布式事务。

  1. 当我将开始分布式事务放入存储过程中时,我得到:

警告:致命错误 8510 发生在 2013 年 4 月 10 日上午 9:07。记下错误和时间,并联系您的系统管理员。

唯一有帮助的是重新启动 Windows 服务或 UI 应用程序。从MS SQL 管理工作室,该过程一直运行没有问题。

现在我必须说我很绝望,我错过了什么?

编辑:

int i = 0;
      while (true)
      {
        i++;
        if ((i % 9) == 0)
        {
          //local select with transaction Works all the time
          CallLocalSelectWithTransaction(); 
        }

        // CallProcedure works 8 times, after first calling of CallLocalSelectWithTransaction
        // the callProcedure works no more.

        CallProcedure(); // procedure with linked server
      }
4

0 回答 0