Viewing 15 posts - 1 through 15 (of 127 total)
Recently ran into this and none of the solutions I found online worked, so posting my solution here.
I found my issue by checking the SQL server system event logs and...
July 11, 2023 at 6:47 pm
As an example, if I move the where clause to the query, the filter is applied before the dense_rank window.
drop view if exists drview;
go
create view drview
AS
with cte...
January 3, 2023 at 11:02 pm
Sorry, field 3 is a field in the table, it's not the dense rank value. I've updated the original question to include your code with a small update.
January 3, 2023 at 10:47 pm
add_cus_cnt = distinct count of customers per address.
cus_cnt = distinct count of customers
The idea is that getting the addresses that have a distinct count of customers equal to the distinct...
September 30, 2022 at 1:51 pm
This is what I've come up with so far. Can someone grade me on this, or say if you think there's a better way?
with ad as (
...
September 29, 2022 at 6:23 pm
I've just been reading that 2019 has a lot of improvement in the area of the query optimizer, table variables, etc. Not really looking for new features. Just wondering if...
October 5, 2021 at 2:31 pm
Actually, it depends on how the table is searched.
Do you often filter the rows by only type when SELECTing? If so, then the clus index makes sense as is. ...
August 25, 2021 at 12:39 am
Looking at the Clustered Index for the oeordlin_sql table, I'm a wee bit concerned (especially for insert and update performance) over having the leading column be in the "ultra...
August 24, 2021 at 7:39 pm
Here is all the indexes for the tables. If you need different format, let me know. P.S., the view only creates aliases for some of the columns in the...
August 23, 2021 at 8:08 pm
Here is all the indexes for the tables. If you need different format, let me know. P.S., the view only creates aliases for some of the columns in the oeordlin_sql...
August 23, 2021 at 8:07 pm
I think you're right. I've found that if I use the LOOP hint to force a loop join, which passes thru the ord_no and line_seq_no thrue to the wspkglin join...
August 23, 2021 at 4:59 pm
It’s funny nobody suggested the most obvious choice in such situation - RIGHT JOIN:
Select s.Shipment_No
, p.pkg_no
,...
August 6, 2021 at 3:15 pm
I would think the subquery would (almost) certainly be able to take advantage of the fact that the query only needs to lookup a single Shipment_No, rather than processing...
August 4, 2021 at 8:09 pm
This subquery actually seems to work well. Any ideas if it would have any performance benefits over the nested join query?
select s.Shipment_No, pl.pkg_no, pl.ord_no
from wsPKGShipment s
left join...
August 4, 2021 at 7:42 pm
Viewing 15 posts - 1 through 15 (of 127 total)