FIX: UPDATE with FORCEPLAN ON May Cause Error 806 in Tempdb

ID: Q171865


The information in this article applies to:
  • Microsoft SQL Server version 6.5

BUG #: 17089 (Windows NT: 6.5)

SYMPTOMS

If an UPDATE trigger fires and contains an UPDATE that joins with the inserted table, the following error may occur if SET FORCEPLAN is set ON and the sysindexes count for syslogs number of pages is high:

Msg 806, Level 21, State 1
Could not find virtual page for logical page <page#> in database
'tempdb'


WORKAROUND

To work around this problem, look for ways to avoid using SET FORCEPLAN ON with UPDATE statements including proper index design.

If you truncate the transaction log and/or run DBCC CHECKTABLE(syslogs) to update the sysindexes entries for syslogs, it is possible that the problem will not occur.


STATUS

Microsoft has confirmed this to be a problem in SQL Server version 6.5. This problem was corrected in the latest Microsoft SQL Server 6.5 U.S. Service Pack. For information on obtaining the service pack, query on the following word in the Microsoft Knowledge Base (without the spaces):


   S E R V P A C K 


MORE INFORMATION

The following is a summary of the conditions that cause the problem to occur:

  • SET FORCEPLAN is set ON.


  • An UPDATE statement inside an UPDATE trigger joins with the inserted table.


  • The table being updated contains at least two rows.


  • The transaction log according to sysindexes.dpages has a large number of pages used.


Keywords : kbusage SSrvTran_SQL kbbug6.50 kbfix6.50.sp4
Version : 6.5
Platform : WINDOWS
Issue type : kbbug


Last Reviewed: April 16, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.