Viewing 15 posts - 931 through 945 (of 1,988 total)
Where did he ever get the idea that either style would default to an implicit outer apply, apply in general is newer than either join syntax....
But no both...
December 12, 2017 at 9:38 am
hmm... the footprint for adding winscp should be pretty small. I don't know why they would need putty on there just to transfer files(although that should also be a very...
December 11, 2017 at 3:12 pm
December 11, 2017 at 12:11 pm
The DOP needed is determined by the query optimizer for each statement that is run(unless you over ride it with a query hint), I don't think there's any concept of...
December 11, 2017 at 12:07 pm
December 11, 2017 at 11:28 am
Why are you trying to keep the constraints? If you know they're enforced in the source data and you aren't modifying the data in the DW there is no reason...
December 11, 2017 at 8:36 am
Yes those are different indexes(ignoring that one will be clustered and one is non clustered) and can potentially be used differently by the optimizer. Also the second index has a...
November 30, 2017 at 10:24 am
November 30, 2017 at 7:57 am
November 28, 2017 at 10:55 am
You can try something like this,
1.Set MonthNumberV2 = month([date])
2. Set MonthNumberV2 = month(dateadd(month, -1, [date])) WHERE [date] < DATEADD(day,
IIF(DATEPART(weekday, DATEADD(month, DATEDIFF(month, 0, [date]), 0)) = 1,...
November 28, 2017 at 9:57 am
It mostly looks like it's carrying the previous month number through the first saturday of every month except you have one day in there 2017-06-04 that's a sunday... ask the...
November 28, 2017 at 8:45 am
Well yes your trigger is set to only run on updates 😀
Change FOR UPDATE AS to FOR INSERT, UPDATE, DELETE AS
It looks like you'll also...
November 28, 2017 at 8:26 am
Viewing 15 posts - 931 through 945 (of 1,988 total)