Viewing 15 posts - 1 through 15 (of 24 total)
Great! The most powerful deduping algorithm I ever saw.
December 4, 2009 at 12:42 am
Nice how-to article. But I wonder why Microsoft does not provide better support for deadlock situations. Hunting SQL server deadlocks is still like in the stone age days of programming...
February 3, 2009 at 7:31 am
I had this problem too some time ago. In my case the view was responsible because it seems like views that join linked tables are extremely inefficient. I suspect that...
January 20, 2009 at 12:19 am
Besides backup issues maybe something is wrong about your application that lets the transaction log grow too fast. Maybe this article is of some use to you
January 9, 2009 at 12:27 am
Yeah, I tried to give you an example but I also could not past xml content here.
But as a clue, lookup the SQL Server documentation: there are examples how to...
October 30, 2008 at 4:07 am
Concering SQL Server 2005, if I get the documentation right the ignore duplicate key statement has no effect:
"The SQL Server 2005 Database Engine does not allow creating a unique index...
July 4, 2008 at 11:08 am
I had this problem too and solved it by row numbering like in the article. Although I had read about the APPLY function it did not come to my mind....
June 18, 2008 at 1:14 am
Karl, thank you very much for the explanation, it sounds plausible and I think this is it.
April 16, 2008 at 5:18 am
I don't understand the connection of OLE/DB errors with your stored procedure. The stored proc is unaware of OLE/DB. Are you looking for how to handle OLE/DB errors in your...
April 16, 2008 at 3:58 am
By chance the disable trigger hint came just when I needed it. Thanks for the nice synopsis you won't find somewhere else.
November 13, 2007 at 4:46 am
The function I quoted was actually written by Erland Sommarskog.
My code works fine with it. The website looks interesting.
Thanks again!
Gerhard
January 12, 2007 at 5:28 am
Thank you very much, I now use a function I found at
This function can parse very long argument lists, this is why it uses a nested loop....
January 12, 2007 at 4:01 am
I would say use transactions in ADO (or any other business logic layer) when you do several consecutive action calls against the database and need to bracket them in one transaction.
August 17, 2006 at 8:45 am
Maybe I am completely wrong but when I read "Configuration block version wrong" it looks like there is a wrong version of a .NET assembly, namely the Application Configuration block. I just...
August 3, 2006 at 12:12 am
Viewing 15 posts - 1 through 15 (of 24 total)