0

我正在尝试使用 TransactionScope 内的 ADO.NET 将 100k+ 项批量插入到我的 Oracle 数据库中。像这样:

using (TransactionScope transaction = new TransactionScope())
{
    while(/* Pagination logic - send insertion command on every 250 items */)
    {
        using (OracleCommand command = new OracleCommand(query, connection))
        {
            command.ArrayBindCount = 250;

            //Add parameters
            command.Parameters.Add(":BLAH", OracleDbType.Long);
            command.Parameters[0].Value = LUC.ToArray();

            command.ExecuteNonQuery(); //Error occurs here after N-times inside while
        }
    }
    transaction.Complete();
}

对于低于此 (10k-30k) 的项目,交易成功完成。但是对于更高的项目(如 100k),我得到ORA-00604: error occurred at recursive SQL level %s

如果我完全删除 TransactionScope,则任何项目大小都不会出现任何错误,它可以正常工作。

如何使 TransactionScope 处理大量项目?

4

1 回答 1

0

事实证明,这是一个事务超时问题。

增加超时后,我已成功插入列表:

using (TransactionScope transaction = 
         new TransactionScope(TransactionScopeOption.Required, 
                 new TimeSpan(0, 30, 0))) //30 minute timeout limit
于 2015-11-04T11:15:44.223 回答