Viewing 15 posts - 676 through 690 (of 59,070 total)
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
I rebuild stats once per week. Because most of the clustered indexes are "ever increasing" in nature, I use the "if it moved, shoot it" approach. I also use full...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 4:45 am
The server has 150GB of RAM And 48 processors, its 2019 Enterprise.
First, that's an insanely expensive server and you good folks have crippled it with 150GB of RAM. You...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2024 at 2:19 am
@ Steve and @ Jonathan,
There is no question at all in my mind that the smart company will invest in it's employees. That's not the issue I'm speaking of.
My bitching...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 16, 2024 at 12:39 am
I see many people that site things like a lack of training at work, etc, etc.
Tell me... if you have a degree, who paid for it? How did you get...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 15, 2024 at 10:31 pm
I'm actually not too concerned about opening xlsx files, as they can't contain executable code (as far as I know). I downloaded and virus-scanned this one before I opened...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 15, 2024 at 12:32 pm
Just to emphasize what Jeffrey Williams is talking about...
SET LANGUAGE ENGLISH;
SELECT English = CAST('2025-09-06' AS DATETIME);
SET LANGUAGE FRENCH;
...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 14, 2024 at 5:54 pm
thank you everyone!
I used the script that Jonathan provided. It turns out that temp was using float when I used numeric. Once I made this change the numbers match.
I...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 14, 2024 at 5:45 pm
Sounds really good! I have never used SQL Prompt for this purpose but used it for other, mostly code formatting and best practices suggestions purposes.
QUESTION: is SQL PROMPT...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 14, 2024 at 5:43 pm
Viewing 15 posts - 676 through 690 (of 59,070 total)