Viewing 15 posts - 2,626 through 2,640 (of 59,067 total)
If by MDP, you mean MAXDOP, I'd change it to 2. You've got a fairly heavy load to be giving folks half the total CPU power for their queries.
If by...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 11:27 pm
I'll second that. It would be mighty handy.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 11:11 pm
I've not done a deep dive on it but isn't this the same request as the following link with different test data?
https://www.sqlservercentral.com/forums/topic/make-last-week-to-zero
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 11:03 pm
Here's the corrected math considering the 100,000 rows instead of the extra zero my too-quick keyboard added....
If the rest of the data follows the example of the data you provided,...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 10:50 pm
Apologies... I used 1,000,000 for the source row count instead of just 100,000. I'll be back with corrected calculations.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 10:07 pm
I'm especially stayed aware of the article and I will get many benefits from it. Subsequently, thank you for sharing it.
This is a prelude to SPAM. It's becoming more...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 8:40 pm
If you had the answer of "Big Brother is watching", more people might have gotten a correct answer. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
October 7, 2022 at 7:26 pm
Keep it simple...
--===== Find all items in Prod1 that are not in Prod2
SELECT * FROM prod1.xxx.dbo.guest
EXCEPT
SELECT * FROM prod2.xxx.dbo.guest
;
--===== Find all items in...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 6, 2022 at 9:58 pm
You have 1 common StudentAccKey with 1 common StudentKey and 1 common StartDate.
And yet there are two StudentID's and six different StudentName's.
The code that you're using to get the data...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 6, 2022 at 9:53 pm
I'm very new to the sql and am wondering what is the easiest way to run the same query multiple times with different dates (ideally is the last day...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 5, 2022 at 5:41 pm
I've found that the "sweet spot" for the 32 core machine at one of the companies I do work for is a MAXDOP of 4. Their biggest problem is the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 5, 2022 at 5:29 pm
Awesome link and explanation, Grant. Thank you.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 5, 2022 at 5:07 pm
Let's ask the question... how often do the "temp tables" appear? Let's also ask, why do you have "temp tables" of such a size to begin with?
The reason I'm...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 5, 2022 at 4:50 pm
Any help on this request... I tried to goggle but didn't see examples...
Thanks.
I think the problem is that people doubt your claim. Case in point...
https://www.google.com/search?q=Get+backup+status+for+multiple+sql+servers+using+powershell
--Jeff Moden
Change is inevitable... Change for the better is not.
October 4, 2022 at 8:22 pm
Let's ask the question... how often do the "temp tables" appear? Let's also ask, why do you have "temp tables" of such a size to begin with?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 4, 2022 at 8:11 pm
Viewing 15 posts - 2,626 through 2,640 (of 59,067 total)