Viewing 15 posts - 151 through 165 (of 1,243 total)
January 9, 2019 at 2:17 am
January 8, 2019 at 8:54 am
WayneS - Tuesday, January 8, 2019 8:17 AMHas "The Thread" died? I haven't seen anything new in too long now.
There's been nothing...
January 8, 2019 at 8:26 am
No need to apologise Pietlinden, especially when you've just taught me something too. I didn't realise running totals had become so straightforward.
However.... The OP's after a solution that...
January 8, 2019 at 1:35 am
If there is no way to establish the order of the rows this can't be done properly. If you don't know what value is first then second and so on...
January 7, 2019 at 4:38 am
Ok, that's better but it's still not hugely clear.
Are you adding all three tables together for all ID's? You appear to have used ID 1 for all your...
January 7, 2019 at 3:27 am
January 7, 2019 at 2:35 am
January 2, 2019 at 7:30 am
There's not a lot to go on there. There's a huge number of reasons why your report isn't returning anything. You'll need to provide much more detail to get a...
January 2, 2019 at 7:15 am
This is known as the 'Double-Hop Problem' and there's a lot of information out there. It essentially boils down using Kerberos to pass the client's credentials from one server to...
December 21, 2018 at 1:56 am
DECLARE
@TimeTo DATETIME = '2018-07-15 10:11:12'
,@TimeFrom DATETIME = '2018-04-01 09:03:27';
SELECT
CAST(DATEPART(YEAR,startM) AS CHAR(4))
+'-' + CASE
WHEN DATEPART(Month,startM) <10
THEN...
December 14, 2018 at 6:58 am
Viewing 15 posts - 151 through 165 (of 1,243 total)