Viewing 15 posts - 16 through 30 (of 56 total)
Thanks for the feedback. I've run the test several different ways (current way posted, putting values into a table variable, and single execution statements) and found they produced...
August 12, 2011 at 7:20 am
mark hutchinson (5/25/2011)
Here's an idea to kick around for varchar(max) data...use a tally table (or cte equivalent) to split the very large string into strings less than 8000 characters and...
August 8, 2011 at 2:11 pm
Another fantastic RBAR article by the director of DAR, Department of Anti-RBAR!
One drawback with Itzik-Style Cross-Joins going out to E8 is making sure you limit E8's results as soon as...
August 8, 2011 at 1:21 pm
Jeff Moden (6/14/2011)
June 14, 2011 at 10:18 am
Alexey Voronin (6/14/2011)
What's this COALESCE(SUM(SalesTestData.SaleQty),0) ?You do not know ISNULL ?
ISNULL(SUM(SalesTestData.SaleQty),0)
They are interchangeable. Both are the same thing except COALESCE() allows for more than one evaluation.
June 14, 2011 at 7:29 am
Chris,
Thanks for directing my attention. While I didn't have a DefaultLog value in the registry, I added it and restarted SQL to have it fixed. I'm still not sure why...
May 25, 2011 at 7:43 am
Jeff Moden posted a very nice article about CSV parsing. His code was written for a max input string of 8K so if you need more, stay tuned for an...
May 2, 2011 at 10:30 am
As promised, I did some testing (sorry it took this long). This was run from my laptop in a Win2K3 Server VM. The results showed a pretty consistent run time...
April 2, 2011 at 11:28 pm
Craig Sunderland (3/7/2011)
March 7, 2011 at 7:54 am
Interesting about the varying times with smaller sets of data. I'll do some testing and see what I can find.
March 2, 2011 at 10:21 pm
We've found good use of the following tally table and UDF. It handles empty elements and works fast for us. We've done large and small sets against it.
CREATE TABLE...
March 2, 2011 at 12:20 pm
gosh (11/24/2010)
I have to admit that I am not impressed with the title. It is wrong. According to your article, the column order in a composite index is not important.
Go...
November 24, 2010 at 7:37 am
cengland0 (11/23/2010)
The maximum key length is 900 bytes....
November 23, 2010 at 10:22 pm
I'm finishing up on a re-write of our import process. We import millions of rows through a Visual FoxPro app from the employee's computer. It can import CSV, fixed length,...
October 19, 2010 at 9:57 am
It sounds like you're trying to make backups of your DB by using a simple file copy and paste. I wouldn't recommend you rely on that kind of backup unless...
August 9, 2010 at 8:33 am
Viewing 15 posts - 16 through 30 (of 56 total)