Viewing 15 posts - 451 through 465 (of 1,398 total)
The thread is a duplicate. Regarding just the first 4 lines of the procedure
Begin
-- these 2 should always be set in ALL sp's
-- set nocount on;...
February 16, 2022 at 7:21 pm
It happened to be an article (which I vote yes also to keeping open) but idk it could've been a regular forum post. Those come up in searches. A new...
February 15, 2022 at 10:18 pm
So a lot of folks have written articles where no one has posted to the discussions in well over a year. If someone reads and article and has a...
February 15, 2022 at 3:50 pm
After following Ken and Jeff's advice first maybe have a look at the error handling and flow of control. You've got TRY/CATCH all over the place and GOTO and it's...
February 14, 2022 at 8:44 pm
The explanation seems somewhat open to interpretation. Maybe you could explain why Brazil's ItemCount is 300 and not 500? If 500 is the correct number for Brazil then maybe something...
February 12, 2022 at 12:19 pm
You have an explicit transaction called from within BEGIN TRY/END TRY yet the ROLLBACK (which presumably corresponds to the transaction) is in the CATCH block. Checking XACT_STATE in...
February 7, 2022 at 5:27 pm
... has failed throwing:
'Error converting data type varchar to numeric.'
The where clause is comparing a nvarchar field with a simple three character text string, no numerics to be seen...
Shaunos
Cheers...
February 6, 2022 at 1:40 pm
Hello Everyone,
I just started a developing a new application for hospitals (for maintaining hospital staff, patient, appointments etc.). I started with the database part first.
I will use APIs as...
February 5, 2022 at 2:32 pm
I totally agree, Grant.
I'm looking at introducing "software engineering" as a topic to discuss at work with the data engineers, and introduce them to all of those concepts like...
January 29, 2022 at 2:11 pm
Oops, I edited the code above and posted instead grr. Preemptively, imo concatenation is preferable to replacement when the strings are not complicated (such as this one here) because it...
January 27, 2022 at 2:14 pm
This seems to return the correct results and could be "more optimized" (depending on cardinalities, indexes, etc.)
select C1
from #Base
group by C1
having sum(iif(C2='122', 1, 0))>nullif(sum(iif(C2='123', 1, 0)), 0);
January 27, 2022 at 1:28 pm
STRING_AGG is not available in SQL Server 2016.
Something like this maybe
with
unq_itemno_cte(itemno) as (
select distinct itemno
from #data),
pvt_cte(itemno, string) as...
January 25, 2022 at 6:24 pm
STRING_AGG is not available in SQL Server 2016.
Maybe try starting here for examples of the old way
One modern element I would add would be to use CONCAT_WS ("concat...
January 25, 2022 at 5:01 pm
Obviously there's no need for nullable columns or a cursor
drop table if exists #data;
go
create table #data (
businessday ...
January 25, 2022 at 3:31 pm
Viewing 15 posts - 451 through 465 (of 1,398 total)