Viewing 15 posts - 1,606 through 1,620 (of 7,614 total)
And I agree 110% with pietlinden on the NO LOCK hint. I would avoid using NOLOCK. It is in my coding standards that NOLOCK should be avoided except where...
April 30, 2021 at 4:50 pm
"The result is"
For you, but not for us! We don't have access to your tables nor do we know anything about them. We need actual usable data to test with,...
April 30, 2021 at 4:35 pm
Would it be feasible for you to use a different SQL Server Alert for each silo? That is, the Alert would be the same except for silo name, but you...
April 30, 2021 at 4:24 pm
When you plan to rebuild/reorganise an index you need to answer the main question:
What happens next?
Massive DELETEs on the table imply that there are as massive INSERTs.
What happens...
April 30, 2021 at 2:27 pm
For me it looks like a bug when driver converts parameter types like this.
I tend to agree with you there, I think it's a type of bug as...
April 30, 2021 at 2:23 pm
Thank you ScottPletcher, your method worked. The query was executed on remote server "as is". The only downside of this method is inability to use parameters. However, this...
April 30, 2021 at 2:17 pm
I have trouble even imagining the business or technical case where I'd ever design a table to have massive deletes all over the table at the...
April 30, 2021 at 2:15 pm
Yes... I'm well aware (and very thankful) that a given job can only be run once at a time. The concurrency I'm talking about is when you have...
April 30, 2021 at 2:05 pm
Yeah, I didn't go into deep details in the initial postings. Didn't seem necessary. I guess it was. I have trouble even imagining the business or technical case where I'd...
April 30, 2021 at 3:24 am
Fairly frequent random deletes lower the space used below the fill factor and thus can cause an issue with reorg.
First of all,...
April 30, 2021 at 3:08 am
Heh... lordy... never mind. Nothing has changed in the last decade. Jeffrey Yao has an article on the subject. These aren't what I call "easy" methods and some...
April 30, 2021 at 2:51 am
Personally, I'd remove SQL and re-add with the desired collation. Changing collations can be tricky, esp. on the master db.
April 30, 2021 at 1:45 am
We already keep 1 month of backup on drive and anything above that should transfer to shared backup network and that is...
April 30, 2021 at 1:43 am
IF you control the connection string, you can use a specific app name, and then a logon trigger can review the app name and decide if it wants to let...
April 29, 2021 at 10:02 pm
Have you reviewed page compression for the tables? If not, that's the first thing to look at. Unless the rows just keep having lots of updates through their entire history. Generally,...
April 29, 2021 at 9:59 pm
Viewing 15 posts - 1,606 through 1,620 (of 7,614 total)