Viewing 15 posts - 1,126 through 1,140 (of 1,988 total)
It really depends on why exactly they think SA is required.
One option if they absolutely have to have SA is to just give them their own instance and...
March 21, 2017 at 9:58 am
I don't think the two can be separated at least not right now. Very very few companies and that number decreases substantially as company size increases are using out of...
March 21, 2017 at 8:53 am
Well are you getting just the concatenated data or do you have access to the base fields, if so just sort on those in the desired order.
March 14, 2017 at 3:08 pm
March 13, 2017 at 3:09 pm
March 13, 2017 at 1:54 pm
One option is to import the data into a staging table without whatever constraints are causing you issues, then from there load the valid data into your final table and...
March 10, 2017 at 1:30 pm
March 9, 2017 at 3:46 pm
What about this?
WITH TEMP_CTE AS(
SELECT *, LEAD(VisitDate, 1, '29990101') OVER(PARTITION BY PID ORDER BY VisitDate ASC) AS NextVisit FROM #Person
)
SELECT TEMP_CTE.PID, TEMP_CTE.VisitDate,...
March 9, 2017 at 8:22 am
March 8, 2017 at 2:59 pm
March 8, 2017 at 8:48 am
March 7, 2017 at 12:33 pm
Here's an example of a query. I used the term example because the...
March 7, 2017 at 10:33 am
Viewing 15 posts - 1,126 through 1,140 (of 1,988 total)