Viewing 15 posts - 661 through 675 (of 59,063 total)
Thanks for the article, John. I'd like to do an experiment with another method. Can you identify the 3rd party link for where to get the source CSVs from, please?
--Jeff Moden
Change is inevitable... Change for the better is not.
March 20, 2024 at 6:07 pm
This is how my table looks except I used random numbers for my values. Some of the dx columns have values and some do not. How about actually showing...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 19, 2024 at 11:04 pm
Please see the article at the first link on how to provide some readily consumable test data to help you help people help you. It also saves on many questions...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 19, 2024 at 10:38 pm
700GB log file for a 5TB database? Have you determined what caused it to grow that large and, if you reduce the size, will it grow to be that large...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 19, 2024 at 9:37 pm
Ditto what Frederico said. You've already identified the problem queries. Check the execution plans for them and fix them.
I'll also say that if you have to remove data from a...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 19, 2024 at 8:24 pm
Currently we are collecting database statistics information using
select * FROM sys.dm_db_index_physical_stats( 14, NULL, NULL, NULL, 'SAMPLED')
For some larger databases this statement takes more than...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 5:51 pm
p.s. Page compression includes Row compression, which basically turns a lot of "fixed width" datatypes to "variable width" and that can cause HUGE performance and log file problems due to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 3:19 pm
Heh... you just had to know there was going to be some spam involved after the 2 new one-off replies that mostly didn't say much. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 3:15 pm
Hi Experts,
I am observing strange deadlock behaviour where one deadlock graph have 2 isolated databases involved. Can any experts here shed some light on this?
Regards
Synonyms. Views. Joins that use...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 3:08 pm
Currently we are collecting database statistics information using
select * FROM sys.dm_db_index_physical_stats( 14, NULL, NULL, NULL, 'SAMPLED')
For some larger databases this statement takes more than 23...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 2:58 pm
Heh... I work with a "Director" that I've worked with for nearly 2 decades. He had a sign on his wall that said...
"Piss Poor Planning on YOUR part DOES constitute...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 18, 2024 at 2:43 pm
We're not joining to anything local, fortunately. We're literally just dumping the contents of reporting tables on our server to a tables on their server - the only difference...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 4:38 pm
Ok... on that note... it's a bit ironic having a RedGate employee talk to us about "Giving it away" when the very forum such an article is on has seriously...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 3:09 pm
We create a sqluser "NonSA" to serve as dbowner for all user databases (unless other is actually needed - eg during install/upgrade of some software)
Thumbs up on that. That...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 2:16 pm
Thanks for the quick reply Jeff!
Do you use Auto update stats? And for critical tables full scan with norecompute? And update these weekly? Or just full scan all stats...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 2:14 pm
Viewing 15 posts - 661 through 675 (of 59,063 total)