Viewing 15 posts - 511 through 525 (of 59,063 total)
Hey there, Sam...
I took a look at your index spreadsheet. That's a good thing but it's missing some critical information...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 20, 2024 at 3:36 pm
There is some original basis of truth in rumor and old wives tales. While you place no faith in Fox, it did make people at least look.
While your opinion that...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 18, 2024 at 4:46 pm
Ah... I found the word I was looking for...
Lookup the term "enshittification". It's a term that was coined by XXXXXXXXXX in 2022 and became the "word of the year" for...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 18, 2024 at 3:54 pm
Understood. Thanks for the feedback, Steve.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 17, 2024 at 7:51 pm
As an important sidebar, I don't know why you need to do this but it's generally a really bad idea to denormalize data in such a fashion. Maybe post the...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2024 at 7:28 pm
Hi All ,
fitst you need to disable all maintenance plan , perhaps your rebound or organise process all table without considering fragmentation .
also tha sal server audit can...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2024 at 6:40 pm
change the database compatibility to SQL2019 prior to the items below.
the optimizer is different between versions, so it's pretty standard to have to, at a minimum, rebuild statistics with...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2024 at 6:32 pm
What is 'Cabot'?
I second that question.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2024 at 6:26 pm
@Grant Fritchey,
I think you'll absolutely love the following article...
https://getpocket.com/explore/item/looking-to-ditch-twitter-morse-code-is-back
--Jeff Moden
Change is inevitable... Change for the better is not.
June 13, 2024 at 2:03 pm
Is someone doing any form of Index Maintenance? It may not be in a separate job somewhere.... it may be something that someone has added to a stored procedure because...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 12, 2024 at 9:54 pm
If you can send a note to marketing@ with your specific complaints or issues, that will help. There is a proposal up with our internal IT staff/developers to do...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 12, 2024 at 12:39 am
To stop the table locking you could use a rowlock hint:
-- Ensure we are using row-level locking
SELECT @intID = (idPool + 1)
FROM IdConfiguration WITH...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 11, 2024 at 1:38 pm
DECLARE @intID BIGINT
,@bridgeid BIGINT = 1
;
UPDATE dbo.bridge
SET...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 11, 2024 at 2:46 am
Try not to specify the idPool column twice in the same Update statement and get rid of the Select statement.
The select statement where criteria is the same as the...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 11, 2024 at 2:43 am
The Dynamic SQL is executed in a different context.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2024 at 10:03 pm
Viewing 15 posts - 511 through 525 (of 59,063 total)