how to resolve DTS_E_OLEDBERROR. in ssis

后端 未结 8 2163
花落未央
花落未央 2021-02-07 22:00

In an ssis package consists of data flow task,contains OLEDB source and OLDB Target ..provider is sql native client..This used to run fine ..but now got an error as shown bel

8条回答
  •  轮回少年
    2021-02-07 22:30

    Knowing the version of Windows and SQL Server might be helpful in some cases. From the Native Client 10.0 I infer either SQL Server 2008 or SQL Server 2008 R2.

    There are a few possible things to check, but I would check to see if 'priority boost' was configured on the SQL Server. This is a deprecated setting and will eventually be removed. The problem is that it can rob the operating system of needed resources. See the notes at:

    http://msdn.microsoft.com/en-in/library/ms180943(v=SQL.105).aspx

    If 'priority boost' has been configured to 1, then get it configured back to 0.

    exec sp_configure 'priority boost', 0;
    RECONFIGURE;
    

提交回复
热议问题