Rows showing as #DELETED

后端 未结 10 968
春和景丽
春和景丽 2020-12-16 03:48

I have rows of data in a table showing as #DELETED on one computer when using Access but they are fine in both the SQL database and on other computers using

10条回答
  •  情深已故
    2020-12-16 04:05

    This occurs when the tables primary key value, exceeds the range that MS Access supports, usually if you are using the "BigInt" type in SQL Server, if you are only looking to read the data then just create a "snap-shot" query for the table and all rows will display correctly as the "snap-shot" does not need to read all the indexes.

    If you need to update the data in these rows at any time then I suggest using an ADO recordset instead.

提交回复
热议问题