Kindle Update - December
A few of you might be thinking about getting a Kindle for Christmas.If you read a lot, and you move...
2008-12-03
736 reads
A few of you might be thinking about getting a Kindle for Christmas.If you read a lot, and you move...
2008-12-03
736 reads
Over the past several months, I’ve started diving into the world of wait stats on my instances. An ever present...
2008-12-03
726 reads
Recently I needed to rearrange some stuff at the office and part of that included moving our install of Quickbooks...
2008-12-02
251 reads
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
628 reads
DBA, database developer, analyst, SQL grunt, or whatever your title may be, there is no question that your role will...
2008-12-02
797 reads
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
964 reads
You will see this or a similar code sample when referring to clearing the analysis services cache. However, I have...
2008-12-02
576 reads
After taking off 2 days last week for Thanksgiving, and outsourcing 3 editorials (Thanks to Phil Factor and Tony Davis),...
2008-12-02
430 reads
I ran across this history quiz in Jeff Duntemann's blog and thought I'd give it a try. I managed to...
2008-12-01
432 reads
The new Certified Master program sounds suspiciously like the Microsoft Certified Architect program, which appears to have been revamped to...
2008-12-01
762 reads
If you spend your days tuning queries, managing pipelines, or keeping a production database...
I’ve been rebuilding my three-site SQL Server demo lab, and I ran into something...
By SQLPals
SQL Server gMSA: Why DBAs Still Aren't Using It in 2026 ...
Comments posted to this topic are about the item Never is Not the Policy
Comments posted to this topic are about the item Automating SSAS Multidimensional Security Audits...
Comments posted to this topic are about the item Rebuilding All Indexes
I have added a few indexes to one of my tables in SQL Server 2025:
ALTER TABLE dbo.CustomerContact
ADD CONSTRAINT PK_CustomerContact
PRIMARY KEY (CustomerID);
-- Create index on CustomerEmail
CREATE INDEX IX_CustomerContact_CustomerEmail
ON dbo.CustomerContact (CustomerEmail);
CREATE INDEX IX_CustomerContact_CustomerEmail
ON dbo.CustomerContact (phone);
I then do this to disable one index:
alter index IX_CustomerContact_CustomerPhone on dbo.CustomerContact disableI see this when I check the index status:
I decide to rebuild all indexes with this command:
ALTER INDEX ALL ON dbo.CustomerContactAfter I do this, what will I see for the index status? See possible answers