Viewing 15 posts - 541 through 555 (of 6,486 total)
a_ud (3/19/2015)
I take your advice on risk. However, the source being Pubmed, chances that the file is corrupt are tiny. In other words, you...
March 23, 2015 at 10:19 am
mister.magoo (3/19/2015)
Matt Miller (#4) (3/19/2015)
March 19, 2015 at 7:04 pm
Brandie Tarvin (3/18/2015)
March 19, 2015 at 9:56 am
siggemannen (3/19/2015)
HASHBYTES will give different results for following two xmls:
<xml>
<attribute1>1/<attribute1>
<attribute2>2/<attribute2>
</xml>
<xml>
<attribute2>2/<attribute2>
...
March 19, 2015 at 8:24 am
So as far as I can tell from the XML snippet you posted - the line you're worried about would in fact return content and should return "D." (assuming there...
March 13, 2015 at 6:28 pm
a_ud (3/11/2015)
March 11, 2015 at 1:38 pm
JeeTee (3/9/2015)
March 9, 2015 at 3:16 pm
Try "joining" the two. Easiest way is to cascade the cross apply statements, i.e.
SELECT
r.t.value('(.[1])/@CustomerId', 'bigint') as CustomerId,
b.value('.[1]','varchar(2000)')
FROM
...
March 9, 2015 at 11:32 am
One small-ish tidbit: you want to be VERY clear about what is expected when the sample set doesn't evenly divide into the chunks you've decided on. In your case...
March 4, 2015 at 8:42 pm
Jeff Moden (3/3/2015)
Matt Miller (#4) (3/3/2015)
http://www.mssqltips.com/sqlservertip/1761/how-to-use-the-unpivot-data-flow-transform-in-sql-server-integration-services-ssis/%5B/url%5D
That said - you're...
March 3, 2015 at 3:41 pm
Is there any chance you might be running up against the halloween problem?
March 3, 2015 at 10:38 am
By the way - there are several examples already documented. This one's a fairly solid example (describing a similar process)
http://www.mssqltips.com/sqlservertip/1761/how-to-use-the-unpivot-data-flow-transform-in-sql-server-integration-services-ssis/%5B/url%5D
That said - you're still right - it wouild...
March 3, 2015 at 8:49 am
Luis Cazares (3/2/2015)
This is going to be slow.You might gain speed with an additional order column. It could be a persisted computed column.
+1
that way you can include it in indexes...
March 2, 2015 at 10:04 am
Katerine459 (2/27/2015)
Thanks for the general info... I'll check it out. I don't know that I'll use it for this specific thread, though (I'm thinking of using Luis Cazares's solution, once...
February 27, 2015 at 3:17 pm
Viewing 15 posts - 541 through 555 (of 6,486 total)