Viewing 15 posts - 5,491 through 5,505 (of 59,089 total)
how to checkf if SQL Server CPU/RAM has bottleneck? thanks!
There are a ton of decent articles out there on this subject. You really need to do a little "googlin'". ...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 24, 2021 at 11:00 pm
Try changing the SQL Server Agent startup type to "automatic (delayed start)" to make it start after SQL Server.
This is what fixed us a long time ago. I just...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 24, 2021 at 10:50 pm
Yeah... there's always something when it comes to stats. Like you said, ascending date columns can be quite the rub, as well. We have a whole lot of tables that...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 7:19 pm
My original thought in response to this article is "It Depends on the 'tool' in the chair!" 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 4:13 pm
As an infrastructure guy and former consultant, one universal truth that I've observed over the years is the tendency for useful tools that are controlled locally to be replaced...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 4:12 pm
Don't give the privs to the user. Instead, write a stored procedure that uses EXECUTE AS OWNER and give the user privs to execute that stored procedure.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 4:09 pm
In all seriousness, we've always worked in a "distributed fashion". And, yeah, databases are necessarily a bit different simply because of their size and the fact that they contain sensitive...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 3:27 pm
I just reran the code I posted on my production box and it's returning precisely (except I stripped the time off the "Last Accessed Date" output, which you can get...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 3:22 pm
I firmly believe there is danger in the 'cookie-cutter' approach to systems which depend far too much on distant developers instead of hands-on awareness.
Heh... preach it, Brother!
Is it...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 2:59 pm
I don't understand why you people are complaining about the lack of automated DB tuning.
You've been given Auto Index Tuning - don't you have enough of it?
Want more?
Heh... in...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 2:41 pm
This is one of those places where the first step should have been an online search for "sp_spaceused" to find the documentation on the subject. It's pretty explicit about having...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 22, 2021 at 2:35 pm
To be honest, I don't want anymore "help" from MS in managing databases. For example, their insistence on permanently implementing the equivalent of TF11117 on TempDB with no way to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 21, 2021 at 9:00 pm
What's the best way to know which index statistics need to be updated on a daily basis? I currently update stats on Friday, but I've noticed SQL is updating...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 19, 2021 at 12:39 pm
Thanks.
I want the user to be able to insert, amend and delete records within tables, but not to be allowed to create or delete any tables.
How do I achieve...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2021 at 6:09 pm
There are a few things wrong with you query. You need to use queryout to get that to work, but remember, that xp_CmdShell is actually shelling out to a...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2021 at 3:29 pm
Viewing 15 posts - 5,491 through 5,505 (of 59,089 total)