Viewing 15 posts - 2,896 through 2,910 (of 7,614 total)
Yes. You can say either:
In the old AdventureWorks2016 database
In ye olde AdventureWorks2016 database
but I don't think they should be mixed 😉
March 25, 2019 at 11:06 am
Without seeing the actual MERGE, can't get into specifics.
But could you try batching it yourself. For example, if the table being MREGEd has a unique clustering key, then...
March 22, 2019 at 12:04 pm
March 21, 2019 at 9:56 am
I think it's more clear and more flexible to just test each and add up a "not null" count accordingly:
CASE WHEN
CASE WHEN...
March 21, 2019 at 7:50 am
Maybe this?:
SET ANSI_NULLS ON;
SET QUOTED_IDENTIFIER ON;
GO
ALTER Procedure [dbo].[sp_MarkAsLeaver]
@username varchar(50),
@LeaverDetails varchar(100),
@RowsUpdated int output,
...
March 20, 2019 at 2:14 pm
March 19, 2019 at 2:23 pm
Something like this:
SET ANSI_NULLS ON;
SET QUOTED_IDENTIFIER ON;
GO
CREATE PROCEDURE [dbo].[AppTracker_Milestone_Dates_Browse_SP]
@UserName VARCHAR(51),
@DecisionDate DATE,
@State...
March 19, 2019 at 10:23 am
March 19, 2019 at 10:20 am
March 18, 2019 at 2:41 pm
Maybe two separate hashes: (1) all the other columns and (2) the 4K column alone?
March 14, 2019 at 1:15 pm
March 13, 2019 at 3:34 pm
Viewing 15 posts - 2,896 through 2,910 (of 7,614 total)