使用 Microsoft 登入
登入或建立帳戶。
您好:
選取其他帳戶。
您有多個帳戶
選擇您要用來登入的帳戶。
英文
很抱歉,此文章目前沒有您所使用語言的版本。

Symptoms

When you try to modify a record in a table by using the Microsoft OLE DB Provider for SQL Server (SQLOLEDB), you receive the following error message:

Run-time error'-2147467259 (80004005)':
Unspecified error

You receive this message when all the following conditions are true:

  • The table contains a trigger, and the trigger uses a FETCH command.

  • The computer has Microsoft Data Access Components (MDAC) 2.8 installed.

  • The FETCH command does not use its optional INTO clause.

Resolution

To resolve this problem, obtain the latest service pack for Microsoft Windows XP. For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

322389 How to obtain the latest Windows XP service pack

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Steps to reproduce the problem

To reproduce the problem, create an update trigger that uses the FETCH command, and then create a Microsoft Visual Basic 6.0 project:

  1. Start SQL Query Analyzer, and then connect to an instance of SQL Server 2000.

  2. On the Query menu, click Change Database. The Select Database of Server name dialog box appears.

    Note Server name is a placeholder for the name of the instance of SQL Server 2000 that you are connected to.

  3. In the Name column, click pubs, and then click OK.

  4. In SQL Query Analyzer, run the following Transact-SQL statement:

    CREATE TRIGGER jobs_Trigger1
    ON dbo.jobs
    FOR UPDATE AS

    BEGIN

    DECLARE @job_id int
    DECLARE job_inserted_cursor CURSOR
    LOCAL
    FAST_FORWARD
    FOR
    Select job_id
    FROM inserted

    OPEN job_inserted_cursor

    FETCH NEXT FROM job_inserted_cursor /* The error occurs. */
    /* FETCH NEXT FROM job_inserted_cursor INTO @job_id The error does not occur. */

    CLOSE job_inserted_cursor
    DEALLOCATE job_inserted_cursor

    END
  5. Start Microsoft Visual Basic 6.0.

  6. In the New Project dialog box, click Standard EXE, and then click Open. By default, a form that is named Form1 is created.

  7. In Project Explorer, right-click the Form1 form, and then click View Code.

  8. Paste the following code in the code window of the Form1 form:

    Dim cn
    Dim rs

    Private Sub Form_Load()
    Set cn = CreateObject("ADODB.Connection")
    cn.Open "Provider=SQLOLEDB;Pwd=<password>;UID=<user name>;Initial Catalog=pubs;Data Source=<data source>"
    cn.CursorLocation = 2
    Set rs = CreateObject("ADODB.Recordset")
    rs.Open "select * from jobs", cn, 1, 3
    rs.MoveLast
    rs(1).Value = "Test"
    rs.Update
    End Sub

    Note password, user name, and data source are placeholders for the password, the user name, and the data source for your environment.

  9. On the Run menu, click Start. You notice the error message that is mentioned in the "Symptoms" section.

References

For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates

For more information, visit the following Microsoft Developer Network (MSDN) Web sites:

Installing the OLE DB Provider for SQL Server
http://msdn2.microsoft.com/en-us/library/aa198252(SQL.80).aspx

Triggers
http://msdn2.microsoft.com/en-us/library/aa213995(SQL.80).aspx

Transact-SQL cursors
http://msdn2.microsoft.com/en-us/library/aa172595(SQL.80).aspx

需要更多協助嗎?

想要其他選項嗎?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

這項資訊有幫助嗎?

以下何者是您會在意的事項?
按下 [提交] 後,您的意見反應將用來改善 Microsoft 產品與服務。 您的 IT 管理員將能夠收集這些資料。 隱私權聲明。

感謝您的意見反應!

×