Viewing 15 posts - 376 through 390 (of 2,458 total)
Another way (building off Drew and Kevin's excellent solutions) would be like this:
WITH iTally(n) AS
(
SELECT n
FROM ( VALUES(1), (2), (3), (4), (5), (6), (7), (8),...
November 4, 2016 at 10:45 am
I missed the article the first time around but just read it.
The fact that SSIS packages are XML files makes documenting SSIS so much easier provided you have a...
November 4, 2016 at 9:27 am
Luis Cazares (11/2/2016)
SELECT
meetingID,
ProviderName,
SubGroupName,
SessionName,
...
November 2, 2016 at 1:32 pm
I use query hints from time-to-time (not too often) but only when there is no doubt that it's the right choice. The conventional wisdom seems to be that, if you...
November 2, 2016 at 1:24 pm
thomashohner (11/2/2016)
Thanks
--Meeting, Subgroup, Session
CREATE TABLE #Table (MeetingID INT , Levels VARCHAR(20), ProviderName VARCHAR(20), PatientName VARCHAR(20), SubGroupName VARCHAR(20),SessionName...
November 2, 2016 at 12:55 pm
jasona.work (11/2/2016)
I'm thinking something along the lines of when the Detroit...
November 2, 2016 at 11:38 am
This is an interesting 5-year old thread...
Something interesting to note is that the default output for the SQLXML value method is all child text. With that in mind, this...
November 2, 2016 at 10:39 am
Markus (11/2/2016)
Kluber is their best...
November 2, 2016 at 8:18 am
djj (11/1/2016)
Luis Cazares (11/1/2016)
Ray K (11/1/2016)
ResistanceRebellion
Jedi
academy
November 1, 2016 at 10:59 am
mickegohle (11/1/2016)
I have tried to get an insert query to execute faster.
I have a table with an xml-column in it. This xml is quite big and there are...
November 1, 2016 at 9:28 am
Here's kind of a hybrid of both of Luis' solutions:
let's say you have a maximum number of delimiters, for my example we'll say a max of 6 (but you...
October 31, 2016 at 2:28 pm
djj (10/24/2016)
Alan.B (10/22/2016)
Alan.B (10/14/2016)
Ray K (10/14/2016)
October 31, 2016 at 8:28 am
Alan.B (10/14/2016)
Ray K (10/14/2016)
October 22, 2016 at 8:56 pm
Viewing 15 posts - 376 through 390 (of 2,458 total)