Organizing RSS Feeds
I have a lot of blogs I subscribe to. Well over 500 at last count. And the truth of the...
2009-01-07
726 reads
I have a lot of blogs I subscribe to. Well over 500 at last count. And the truth of the...
2009-01-07
726 reads
We use the Analysis Services Deployment Wizard when moving our cubes from Dev to QA and then QA to Prod. ...
2009-01-07
326 reads
OK, today I see something useful about Twitter. I'm stuck in bed, my daughter sick, trying to work and listening...
2009-01-07
960 reads
Yesterday I wrote about some goals for 2009 here at SQLServerCentral. It’s a list of stuff that I want to...
2009-01-07
947 reads
This post, and the next couple in the series (which may not be this week) are me talking through what...
2009-01-06
663 reads
I received notification a few days ago that I was selected again to participate in the We Are Microsoft charity...
2009-01-06
919 reads
If you are thinking about attending DevTeach/SQLTeach in Vancouver this June 8-12, 2009, and you haven't registered yet, you need...
2009-01-06
432 reads
I've been trying to comment on a few interesting blogs here today, but for some reason I can't. It seems...
2009-01-06
575 reads
I wrote a bit of an analysis for my 2008 goals, but didn’t really list any for 2009. Partially because...
2009-01-06
773 reads
Steve Jones recommended this one to me. It starts at the very beginnings of UPS and goes through pretty much...
2009-01-05
402 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