New Business Cards
I ordered new business cards recently after I gave one to someone that needed to send me something and realized...
2009-01-29
1,583 reads
I ordered new business cards recently after I gave one to someone that needed to send me something and realized...
2009-01-29
1,583 reads
Forgot I had this, a friend had sent it to a while back as something I might blog about. Mike...
2009-01-28
1,364 reads
It's been busy since my last update, lots of stuff to work on! I probably won't get it all in...
2009-01-28
1,439 reads
As reporting requirements increase, it seems that aggregate functions have thankfully risen to the occasion concurrently. To maintain its competitive edge...
2009-01-28
2,692 reads
Normally when I write a book, I create a book outline, give it to my editor for feedback, make some...
2009-01-28
4,082 reads
Think about your career and the managers, and potentially leaders, that you’ve had in your life. Think about life in...
2009-01-28
2,035 reads
If you could list all the reasons I work, the number one reason would be to support my family. My...
2009-01-27
1,592 reads
I always consider taking seminars and technical conferences as a key component in my DBA education framework
Last week (Jan 21...
2009-01-27
1,743 reads
I saw this book (It's Your Ship) in a Barnes and Noble and the title and cover attracted me. So...
2009-01-27
1,784 reads
Just to announced that we have now available the comulative update package 3 for SQL Server 2008!
This Update package...
2009-01-27
1,470 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