Viewing 15 posts - 1,111 through 1,125 (of 8,731 total)
There might be other ways. However, I'm not sure what do you need as you're just giving a piecemeal of the information. I can't see a reason why the solution...
July 14, 2017 at 11:28 am
Here's a possibility. Although, I didn't test for performance.
WITH CTE AS(
SELECT *,
DENSE_RANK() OVER(PARTITION BY a ORDER BY b) dr,
...
July 14, 2017 at 10:51 am
July 14, 2017 at 8:46 am
This is easy using the Pattern Splitter by Chris Morris that can be found on the following article: Splitting Strings Based on Patterns - SQLServerCentral
Here's the...
July 13, 2017 at 10:10 am
July 13, 2017 at 8:06 am
July 13, 2017 at 7:32 am
July 13, 2017 at 7:31 am
July 13, 2017 at 7:24 am
July 12, 2017 at 7:55 am
July 11, 2017 at 1:22 pm
Id, startdate, endDate, PersonID, systemID
1, '01/01/2012', '01/12/2015' 1, 1
2...
July 11, 2017 at 8:51 am
July 11, 2017 at 6:08 am
July 11, 2017 at 6:04 am
July 11, 2017 at 6:01 am
Viewing 15 posts - 1,111 through 1,125 (of 8,731 total)