How to solve “Batch update returned unexpected row count from update; actual row count: 0; expected: 1” problem?

前端 未结 4 1117
你的背包
你的背包 2021-01-03 18:12

Getting this everytime I attempt to CREATE a particular entity ... just want to know how I should go about figuring out the cause.

I\'m using Fluent NHibernate autom

相关标签:
4条回答
  • 2021-01-03 18:48

    The error means that the SQL INSERT statement is being executed, but the ROWCOUNT being returned by SQL Server after it runs is 0, not 1 as expected.

    There are several causes, from incorrect mappings, to UPDATE/INSERT triggers that have rowcount turned off.

    Your best beat is to profile the SQL statements and see what happens. To do that either turn on nHibernate sql logging, or use the sql profiler. Once you have the SQL you may know the cause, if not try running the SQL manually and see what happens.

    Also I suggest you to post your mapping, as it will help people spot any issues.

    0 讨论(0)
  • 2021-01-03 19:01

    This may occur because of Auto increment primary key. To solve this problem do not inset auto increment value with data set. Insert data without the primary key.

    0 讨论(0)
  • 2021-01-03 19:02

    When targeting a view with an INSTEAD OF trigger it can be next to impossible to get the correct row count. After delving a bit into the source I found out that you can make a custom persister which makes NHibernate ignore the count checks.

    public class SingleTableNoResultCheckEntityPersister : SingleTableEntityPersister
    {
        public SingleTableNoResultCheckEntityPersister(PersistentClass persistentClass, ICacheConcurrencyStrategy cache, ISessionFactoryImplementor factory, IMapping mapping)
            : base(persistentClass, cache, factory, mapping)
        {
            for (int i = 0; i < this.insertResultCheckStyles.Length; i++)
            {
                this.insertResultCheckStyles[i] = ExecuteUpdateResultCheckStyle.None;
            }
    
            for (int i = 0; i < this.updateResultCheckStyles.Length; i++)
            {
                this.updateResultCheckStyles[i] = ExecuteUpdateResultCheckStyle.None;
            }
    
            for (int i = 0; i < this.deleteResultCheckStyles.Length; i++)
            {
                this.deleteResultCheckStyles[i] = ExecuteUpdateResultCheckStyle.None;
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-03 19:03

    This can happen when trigger(s) execute additional DML (data modification) queries which affect the row counts. My solution was to add the following at the top of my trigger:

    SET NOCOUNT ON;
    
    0 讨论(0)
提交回复
热议问题