Viewing 15 posts - 2,656 through 2,670 (of 59,098 total)
On that note, I agree to disagree. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
October 10, 2022 at 3:09 pm
From task manager under CPU
Sockets: 2
Virtual processors: 8
From Resource Monitor under CPU showing CPU0-CPU7 (only8). Same no 8 cpus from SQL Server Properties. The Max memory is 8gb.
From SQL...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 9, 2022 at 2:16 am
Thanks all so far, I still do not have any feedback from our AV provider,
But if I have an answer I will share it here as well.
Peter
Aye. Thanks for...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 8, 2022 at 6:51 pm
As a bit of a sidebar, you may have some people come back with a suggestion of using the built-in STRING_SPLIT() function. That will seem to work but there is...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 8, 2022 at 6:48 pm
Hi All,
How could I can extract all the first characters in the string using SQL Server query
Just a posting tip... if...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 8, 2022 at 6:45 pm
Processor: Intel(R) Xeon((R) CPU E5-2667 v3 @ 3.20GHZ ((2 processors)
Installed memory: 16 GB
64 bit Operating System, x64- based processor
SQL server Always on is configured on this with just 1...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 8, 2022 at 6:25 pm
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
Viewing 15 posts - 2,656 through 2,670 (of 59,098 total)