Viewing 15 posts - 1,366 through 1,380 (of 8,760 total)
This is very interesting, can you post both execution plans please?
😎
Question, are the sql server configurations the same for both?
I've seen huge performance improvements going...
June 9, 2018 at 3:48 am
Straight forward if you use the Window functions
😎
USE TEEST;
GO
SET NOCOUNT ON
Declare @test-2 TABLE
(
FullName varchar(20),
NewType...
June 9, 2018 at 12:37 am
You can simplify this query, no need to use cross apply or a CTE.
😎
USE TEEST;
GO
SET NOCOUNT ON
Declare @test-2 TABLE...
June 8, 2018 at 11:22 pm
June 7, 2018 at 10:56 am
Only one comment on this one, "RE-DESIGN"
😎
There are too mane anti-patterns and bad practices in the code for even starting to comment on it. Things you...
June 7, 2018 at 7:37 am
June 7, 2018 at 7:25 am
June 7, 2018 at 7:16 am
June 6, 2018 at 6:56 am
I recommend using a straight self join rather than the CTE as the CTE will have both sort operators and a hash match in the plan.
😎
Self...
June 6, 2018 at 12:15 am
June 2, 2018 at 7:54 am
sathwik.em91 - Wednesday, May 30, 2018 5:29 PMUnder what circumstances Normalization is disadvantageous to database?Can someone explain with a neat example?
As Tom...
May 31, 2018 at 9:45 am
May 31, 2018 at 8:28 am
Viewing 15 posts - 1,366 through 1,380 (of 8,760 total)