Automated Book Scanner & Pasta Ponchos
I've mentioned before that Jeff Duntemann is one of my favorite bloggers, and I thought I'd show why I enjoy...
2009-01-26
1,617 reads
I've mentioned before that Jeff Duntemann is one of my favorite bloggers, and I thought I'd show why I enjoy...
2009-01-26
1,617 reads
For those who were in my session on SSIS Scripting at SQL Saturday Tampa last weekend, I have posted the...
2009-01-26
1,363 reads
I had to go to the UK recently and took my Kindle along. I put some thought into my Kindle...
2009-01-26
1,554 reads
SQLSaturday #10 was held January 24, 2008 in Tampa at the Kforce Building. Attendance was about 175, down slightly from...
2009-01-25
1,310 reads
I’m sitting in the Tampa airport waiting for a flight back home from SQL Saturday 10 in Tampa. There was...
2009-01-25
1,679 reads
Anyone attending TechEd 2009 can submit a Birds of a Feather (BOF) session proposal. These sessions are open discussion topics...
2009-01-23
1,444 reads
The book is actually Big Brown: The Untold Story of UPS and it was written by a retired UPSer that...
2009-01-23
990 reads
I have been admonished in the past for the use of this code which makes as many
substitutions as you like...
2009-01-23
1,170 reads
Another story from a previous job. I joined the company in August, in October they started prepping for Halloween - it...
2009-01-22
946 reads
Right now it looks like I'll be putting a training session on for my local ISACA chapter on SQL Server...
2009-01-22
1,102 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