Database Administrtion Skillset Investment Rules
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
793 reads
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
793 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
431 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
391 reads
Last event of the year here in Florida. I'll be heading to the Tampa Code Camp to do a presentation...
2008-12-04
224 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
476 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,075 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
489 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
330 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-12-04
860 reads
Hopefully in the next week or so the full financial info will be released to all members, but in the...
2008-12-03
343 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