Browse by Tags

20 August 2007
SQL Server Error: OLE DB error trace [OLE/DB Provider 'SQLOLEDB' IUnknown::QueryInterface returned 0x80004005: The provider did not give any information about the error.]
SUMMARY You receive the following error trying to execute a query against a linked server: Server: Msg 7399, Level 16, State 1, Line [Line Number] OLE DB provider 'SQLOLEDB' reported an error. The provider did not give any information about the error. OLE DB error trace [OLE/DB Provider 'SQLOLEDB'... Read More...
14 May 2007
Bulk Update and Insert of Object State Stored by SQL Server 2000, Using .NET (C#)
This is a how to/quick start for doing bulk inserts or updates of data on SQL Server 2000 and .NET. 1. Create a simple class: using System; ... ... [Serializable] public class Entity { private int _id; private string _name; private string _description; public int ID { get { return _id; } } public string... Read More...