Viewing 15 posts - 631 through 645 (of 59,069 total)
I think your point about humans needing a change of pace rings true.
I know it sounds daft but I used to enjoy the excitement that surrounded a major...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2024 at 7:07 pm
I uploaded your picture to ChatGPT 4 and asked it to: "Write a SQL Server create table (table name: XXXRE60P) and insert script for this, make sure you...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2024 at 6:30 pm
I've discovered that the table is updated overnight and the issue re-occurs overnight.
If I run the code in the morning then it takes too long to complete. If I...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 9, 2024 at 12:54 pm
Excellent query Jeff. Thank you, thank you! Multiplying by 'combo' within the TOP clause is very nice
Thanks for the feedback, Steve. The hard part was to make "Combo" available...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 9, 2024 at 12:08 pm
You working code link leads to a "Run this fiddle" link. I cancelled from there.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 9, 2024 at 12:06 pm
Since you posted a graphic of the execution plan instead of an actual execution plan and you post no meta-data for the table and you posted no code, we're going...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 9, 2024 at 11:55 am
The correct term is "PFM". 🙂
WITH cteCombo(Combo) AS (SELECT TOP 1 is_combinable FROM #project_types ORDER BY NEWID())
SELECT project_types_ = string_agg(ca.project_type, N', ')
...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 9, 2024 at 12:43 am
but most of the clients wants also using Manually written SQL statements using a functions we call "AdHoc Query" which basically sends the text as Query, and they can...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2024 at 5:51 pm
Remember the company that we're talking about...
It's the company that couldn't see the benefit of a series generator for more than 15 years and, when they finally did release it,...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 30, 2024 at 3:07 pm
I've not used or done a deep review of the article at the following link but, at a 60,000 foot level, it seems like it may be one of the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 30, 2024 at 2:08 am
Thanks for posting your discovery, Mark.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 30, 2024 at 12:37 am
Thanks for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 28, 2024 at 9:10 pm
Well, I am always using the execution plan, so I can understand what's happening, which indexes are used, which are not and I see the suggestions, but I have...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 28, 2024 at 7:07 pm
"Bumping" this thread so the first 2nd page post above shows up.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 28, 2024 at 6:20 am
First of all, determine if all those "wonky views" are indexed views or not.
As for not having a DATE dimension, so what? You've been here on SSC to know exactly...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 28, 2024 at 3:17 am
Viewing 15 posts - 631 through 645 (of 59,069 total)