[Off Topic] Web host is down
For my colleagues and friend who visit my websites (www.bucketofbits.com, www.tyleris.com, www.timmitchell.net), I just discovered that my web host has...
2008-12-01
795 reads
For my colleagues and friend who visit my websites (www.bucketofbits.com, www.tyleris.com, www.timmitchell.net), I just discovered that my web host has...
2008-12-01
795 reads
Steve Ballmer issued a challenge to MVPs a couple weeks ago, asking them to switch to Live Search this week...
2008-12-01
729 reads
That's the question posed by Kalen Delaney in a write up on SQLMag.com. Is a SQL event of more than...
2008-11-30
1,576 reads
In the past few years, many people - myself included - have expressed a desire to see the quality of the Microsoft...
2008-11-29
1,711 reads
I have given a talk about new data types and T-SQL features to three local groups. I am presenting it...
2008-11-28
2,213 reads
database administration scalabilityI am working on a project that is very successful in terms of its market
share, i.e. product users...
2008-11-27
1,874 reads
One more holiday post. Hope you all enjoyed Thanksgiving and are now enjoying either a quiet and well deserved day...
2008-11-27
1,366 reads
Working with healthcare organizations, I am constantly aware of the restrictions my staff and I must abide by according to HIPAA constraints. ...
2008-11-27
1,676 reads
I'm cheerfully taking the day off today (and tomorrow too!), and I'm writing this a week in advance as I...
2008-11-26
1,458 reads
Before you get much further, please do not use this for every case where you have issues with duplicate rows....
2008-11-26
1,520 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