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
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;