Viewing 15 posts - 1,816 through 1,830 (of 8,416 total)
Chad Crawford (7/26/2011)
Alright - flame me now. I'm in a good mood, hopefully I can take it.
Not from me - I tend to agree with you.
July 26, 2011 at 1:52 pm
Roy Ernest (7/26/2011)
July 26, 2011 at 12:15 pm
GilaMonster (7/26/2011)
I'd comment, but it might be a little abrasive...
* groan *
July 26, 2011 at 6:07 am
Chazz88 (7/26/2011)
July 26, 2011 at 6:05 am
The BIT data type can hold the values 0, 1, or NULL.
See http://msdn.microsoft.com/en-us/library/ms177603.aspx
Converting to bit promotes any nonzero value to 1.
See http://msdn.microsoft.com/en-us/library/ms191530.aspx
In many cases, it is possible to write a...
July 25, 2011 at 12:03 am
zapouk (7/24/2011)
July 24, 2011 at 11:57 pm
The ISNULL, COALESCE and CHECKSUM methods are unsafe because they can produce incorrect results.
There is a much better way than using ISNULL, COALESCE, COUNT, or CHECKSUM.
July 24, 2011 at 1:40 am
Ninja's_RGR'us (7/20/2011)
Does that handle single < or > in the text part of the tags? (out of office so I can't run a test).
Nope, cos that wouldn't be well-formed...
July 20, 2011 at 9:33 pm
If the tags are well-formed, this will work:
CREATE TABLE MySampleData (ID INT,HTMLText TEXT)
INSERT INTO MySampleData(ID,HTMLText)
SELECT 1,'NoHTML Inside' UNION ALL
SELECT 2, '<Tag1><tag1.1>yada</tag1.1></Tag1>' UNION ALL
SELECT 3 ,'<OBX.5><OBX.5.1>Blah Blah Data</OBX.5.1></OBX.5>Other Stuff outside of...
July 20, 2011 at 3:56 pm
Welsh Corgi (7/19/2011)
I'm sorry what white paper are you referring to?
The Data Loading Performance Guide - it's a in-line link in my previous post.
July 19, 2011 at 9:44 pm
I'd be interested to see the query plan for the DELETE, because without knowing what the clustered index is on that table, I have no way to know whether it...
July 19, 2011 at 7:38 pm
mister.magoo (7/19/2011)
I can't think how you would do that other than in an OUTER APPLY?
We normally use OUTER APPLY, yes. It's not a nice situation, but sometimes (often) necessary.
July 19, 2011 at 6:35 pm
CELKO (7/19/2011)
I am hoping that the optimizer will "do magic" when the same scalar value appears in a single expression after the table is constructed.
Generally speaking, the optimizer is...
July 19, 2011 at 5:43 pm
Viewing 15 posts - 1,816 through 1,830 (of 8,416 total)