CPU Overcommitment and Its Impact on SQL Server Performance on VMware
In the early days of virtualization, the core focus of virtualization was primarily consolidation. You could achieve quite high consolidation...
2012-12-17
1,781 reads
In the early days of virtualization, the core focus of virtualization was primarily consolidation. You could achieve quite high consolidation...
2012-12-17
1,781 reads
Today I spoke at the Washington DC SQL Saturday #173. I first spent some time in the SQL Server Performance...
2012-12-09
734 reads
I am pleased to announce that I am speaking Thursday, December 6, at the SQLPASS Performance Virtual Chapter Winter 2012...
2012-11-30
1,302 reads
A special thanks goes to Daniel Angerer (t) for suggesting an improvement that corrected the divide by zero error that one...
2012-11-26
1,224 reads
Have trouble getting your new Nexus 7 connected to Windows so you can move some media files over?
Install the drivers...
2012-11-24
773 reads
I will be speaking at SQL Saturday #173 in Washington DC at the Microsoft MTC in Chevy Chase, MD, to speak on...
2012-11-16
803 reads
Gregg Robertson (b | t) has posted a fantastic page that contains a tremendous amount of information for those of you...
2012-11-15
696 reads
I cannot believe how surreal this past SQL PASS Summit was for me. This was the second Summit I have...
2012-11-20 (first published: 2012-11-14)
1,945 reads
WOW! I’m absolutely honored to announce that I am speaking with theKevin Kline tomorrow at the SQL PASS Summit 2012....
2012-11-09
676 reads
Yesterday I finally got around to adding a much needed improvement to my SQLIO Analyzer tool. You now get a...
2012-11-01
1,493 reads
By Steve Jones
I’ll be at SQL Bits tomorrow, Saturday Jun 20, 2025 for the final day...
By John
In a recent video, I took a hands-on look at the Next Gen General...
By Rohit Garg
India’s 2025 tax reforms have introduced a bold shift in how income is taxed,...
Full error message: SSRS error: The Value for the image 'Image1' has a constant...
We are in the process of upgrading to SQL Server 2022 and would like...
Comments posted to this topic are about the item How to Choose the Right...
I have a table, called dbo.logger, in SQL Server 2022. I decide to add two new columns to this table with this code.
ALTER TABLE dbo.logger ADD CreateDate DATETIME CONSTRAINT dfGetDate DEFAULT GETDATE() GO ALTER TABLE dbo.logger ADD ModifyDate DATETIME DEFAULT dfGetDate GOWhat happens when I run these two batches? See possible answers