Viewing 15 posts - 1,696 through 1,710 (of 7,616 total)
You don't have any WHERE condition in the SELECT in the loop. Thus, so it's essentially random which row SQL will return.
Btw, don't use functions against table columns in the...
April 14, 2021 at 2:20 pm
Yes. Eirikur's version of DelimitedSplit8k is fast AND is an inline table valued function. Everyone who can't use String_Split should get a copy. Also, use of an...
April 14, 2021 at 1:08 am
Yes, in theory could be less efficient in some cases than a LOOP join. But it's still reasonable performance. You'll never totally drop off a performance cliff going from LOOP...
April 13, 2021 at 7:20 pm
First let's correct the PK. Then the code for the proc.
ALTER TABLE [dbo].[Contracte] DROP CONSTRAINT [PK_Contracte];
ALTER TABLE [dbo].[Contracte] ADD CONSTRAINT [PK_Contracte]
PRIMARY KEY...
April 13, 2021 at 6:37 pm
If it could ever have more than one, then it needs to be a JOIN, just like you have it.
April 13, 2021 at 6:31 pm
Yeah, seems like a bug in SQL optimizer. I'd make sure SQL didn't use a LOOP join (gack!) for the two main tables. I think the hint will also force...
April 13, 2021 at 3:28 pm
The source table, DBSource.dbo.Contacts, must have duplicate entries for the same ContactID.
April 9, 2021 at 9:14 pm
Yes, a standard Agent Alert, like below, but you need to change <instance name> to your actual instance name and the job id to your actual job id:
April 9, 2021 at 8:41 pm
Overhead. The default health trace contains deadlock info, although I prefer to create my own extended event specifically for deadlocks.
I have an alert that triggers a job when a deadlock...
April 9, 2021 at 4:40 pm
There is a T-SQL forum. This type of q would generally go there. But not a real problem. Try the code below:
SELECT pf.Name,
...
April 9, 2021 at 3:56 pm
For choice of clustered index columns, I am confident that they are correct. They are int or bigint columns and are very frequently used in many queries.
on...
April 9, 2021 at 3:51 pm
(1) Yes.
(2) It means to any recoverable resource, that is, any resource affected by COMMIT / ROLLBACK.
(3) Data in memory (in a buffer) that is forcibly written to disk is...
April 9, 2021 at 3:46 pm
First, need to number these qs:
(1) With WAL - Any modifications are written to the transaction log before they're written to the data files (mdf). Is this correct?
Most articles...
April 9, 2021 at 3:34 pm
I'm not getting any syntax errors on:
ALTER DATABASE [IBMStemplate] SET ANSI_NULL_DEFAULT OFF
Not sure what that's about.
Btw, I just noticed that you're growing the log file by 10%. NEVER use %,...
April 9, 2021 at 3:30 pm
Viewing 15 posts - 1,696 through 1,710 (of 7,616 total)