Viewing 15 posts - 1,156 through 1,170 (of 1,396 total)
In the FROM clause of the UPDATE statement you list the table 'Orders'. My guess is you intend for this to be the CTE but if the schema is not...
February 10, 2020 at 10:06 pm
I agree. The answers are equivalent at best.
February 7, 2020 at 5:42 pm
drop proc if exists dbo.test_case_cross;
go
create proc dbo.test_case_cross
@node_order int,
@Record_Key_4 ...
February 7, 2020 at 5:20 pm
Here's how I'm testing it. I'm switching over to John and Jonathan's in the case where there are not nullable columns. Still with the CROSS JOIN. Wait a sec
February 7, 2020 at 5:14 pm
Yeah I'm getting counterexamples too including my own. Which columns can be NULL?
February 7, 2020 at 4:53 pm
...
from
Popup_Switches ps
cross join
#temp_1 t
where
ps.popup_gid in(2, 5)
and t.node_order=1
and (t.record_Key_4 = '1' or t.Record_Key_5 NOT IN ('I', 'X'));
February 7, 2020 at 4:32 pm
It's an unusual query. There's no join condition so it's really a CROSS JOIN. I would guess the temp table always returns 1 row. No matter what this query will...
February 7, 2020 at 3:35 pm
with grupo_cte(idTipoGrupoCons, intIdEntidad, intIdEjercicio) as (
select 16, 50, 7
union all
select 16, 45, 4
...
February 5, 2020 at 2:18 pm
The table has grown and grown and needs around 3.7 GB for 2.2 Million records.
It's the size of the Excel file with the pivot table?
February 4, 2020 at 3:45 pm
I think the trick is that we're all in the same boat, so stating why you oppose something but knowing that the final decision might be somewhere else is...
February 3, 2020 at 3:39 pm
I'm not sure I agree on this one - cooperation leads to learning. rather than fight them we can mentor them
Now I work in marketing... the only thing...
February 3, 2020 at 2:19 pm
In the FROM clause of the "main query" the table dbo.ShtStock had been LEFT JOINED to based on the ShtStockId. I changed that to be the dbo.NZ(...) function. The "main...
February 2, 2020 at 12:49 pm
I don't think it's as much an attitude issue as it is a domain knowledge issue. I wouldn't try to tell .Net developers how to write C# code, but...
February 1, 2020 at 2:38 pm
Maybe the obscured error message contains some clues
February 1, 2020 at 1:19 pm
Viewing 15 posts - 1,156 through 1,170 (of 1,396 total)