Viewing 15 posts - 796 through 810 (of 1,396 total)
Well, I'm not really experienced with hierarchyid other than fiddling around with it. Most of what can be accomplished with hierarchyid can also be done in various other ways. In...
November 20, 2020 at 1:05 pm
with t2_latest_cte as (
select *, row_number() over (partition by RunDate
...
November 19, 2020 at 4:30 pm
When I run each query and include the actual execution plan the results are identical. Both do one table scan and a constant scan on the results. So yes they...
November 18, 2020 at 7:29 pm
drop table if exists #Customer
go
create table #Customer(
CIDint not null,
WholeSaler bit not null,
ReSalerbit not...
November 18, 2020 at 3:57 pm
select year(eomonth(getdate(),-1))
November 17, 2020 at 8:26 pm
Thanks for the suggestions. I am still curious to know why the MERGE statement deadlocks though. Any ideas?
The way to restrict the number of rows the MERGE is applied...
November 17, 2020 at 3:13 pm
Since you're counting across months the quick way to generate the daily rows would be to use a tally function. This uses dbo.fnTally which see this link for details. ...
November 15, 2020 at 11:02 pm
It's impossible to say with certainty but perhaps there's another process which causes locking?
November 14, 2020 at 1:37 pm
Maybe you're looking for something like this
Declare @PalletContent table (ID int,
...
November 14, 2020 at 1:21 pm
If the MERGE throws an exception is there a rollback? Could you post the whole procedure? Is the lock still an issue or it's inconsistent? Broken MERGE statements are a...
November 13, 2020 at 5:56 pm
Receiving JSON and putting it in SQL tables (and the reverse) is pretty much what my job entails these days. It seems like there ought to be an SSIS way...
November 11, 2020 at 3:27 pm
Step 1 could be to summarize by the concatenation of MODEL and VARIANT. Then further summarize by year (årgang) and use STUFF+FOR XML to aggregate the concatenation of MV_ANTAL and...
November 11, 2020 at 3:03 pm
Hi there -- thank you for the points 🙂 It wasn't clear to me it's OK to use the uniqueid to order the results. Windowing functions are permitted in the...
November 11, 2020 at 12:31 pm
My answer was posted on Stack Overflow. It assumes as little as possible about your data. The final result isn't in the same order as the example output because...
November 10, 2020 at 8:56 pm
A non-dynamic crosstab query to produce the output above could be something like this
with names_cte as (
select *, row_number() over (partition by department,...
November 2, 2020 at 7:11 pm
Viewing 15 posts - 796 through 810 (of 1,396 total)