ACC2000: Error Message: DBC Update ON Linked Table TABLE NAME Failed (305617)
The information in this article applies to:
This article was previously published under Q305617 Moderate: Requires basic macro, coding, and interoperability skills.
This article applies only to a Microsoft Access database (.mdb).
SYMPTOMS
When you use Microsoft Access to update or insert a record into a linked Microsoft SQL Server table, you receive the following error message:
ODBC Update ON Linked Table <TABLE NAME> Failed. You cannot save this record at this time. Microsoft Access may have encountered an error.
CAUSE
This behavior occurs when Microsoft SQL Server does not return the message that indicates the number of rows that are returned by a statement. Microsoft SQL Server does not return this message after you execute the following commands on SQL Server in the Query Analyzer utility:
sp_configure "user options", 512
GO
RECONFIGURE WITH OVERRIDE
GO
SET NOCOUNT ON
GO
RESOLUTION
In Microsoft SQL Server Query Analyzer, execute the following Transact-SQL statements:
sp_configure 'user options',0
GO
RECONFIGURE WITH OVERRIDE
GO
SET NOCOUNT OFF
GO
Additionally, you may have to set the allow updates option. To set the allow updates option, execute these additional Transact-SQL statements:
sp_configure 'allow updates',0
GO
RECONFIGURE WITH OVERRIDE
GO
REFERENCES
For more information, see Microsoft SQL Server 2000 Books Online, which is available at the following Microsoft Web site:
Modification Type: | Major | Last Reviewed: | 6/25/2004 |
---|
Keywords: | kberrmsg kbprb KB305617 |
---|
|