Michael D'Spain

A little about me:

I don't have a computer science or IS degree and I am not fresh out of college. Working in data is a second career for me. I was a musician and music teacher for 12 years, 4 of those in southern California where I fell in love with Longboarding, prior to getting into working with SQL Server. In 2010, I was telling a friend of mine, who is a MicroStrategy developer, how I was burned out and wanted to change careers. He told me, "learn SQL and you will always have a job." I had no idea what SQL was. I bought some books and studied for about 9 months and took the SQL Server 2008 Development test. I passed and that helped propel me into a job as a SQL Server DBA in Dallas, TX. I never in a million years thought I would be doing this. It is actually quite rewarding. I love the process of trying to solve a problem.


So why the Surfing DBA when I live in land locked Dallas, TX. I have my Harbour 10.0 Banana hanging up in my garage. When living in SoCal, just about every weekend I was either surfing at Bolsa Chica Tower 22 or San O' or was snowboarding at Snow Summit. When my wife and I had kids, we moved to Dallas to be closer to family. I have never lost my love for the water and miss the ocean terribly. I have recently found DFW Surf Club and will dusting off the old board soon to try some wake surfing and a stand up paddleboard.

Hang Ten my fellow DBAs!!
Michael D'Spain

Blogs

From DBA or Data Engineer to AI Engineer: A Realistic Path

By

If you spend your days tuning queries, managing pipelines, or keeping a production database...

Asynchronous Replication of Snapshots from an ActiveCluster Pod to a Third Array

By

I’ve been rebuilding my three-site SQL Server demo lab, and I ran into something...

SQL Server gMSA: Why So Many DBAs Still Aren't Using It in 2026

By

SQL Server gMSA: Why DBAs Still Aren't Using It in 2026 ...

Read the latest Blogs

Forums

Never is Not the Policy

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Never is Not the Policy

Automating SSAS Multidimensional Security Audits with PowerShell

By Pablo Echeverria

Comments posted to this topic are about the item Automating SSAS Multidimensional Security Audits...

Rebuilding All Indexes

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Rebuilding All Indexes

Visit the forum

Question of the Day

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 disable
I see this when I check the index status:Index status for CustomerContactI decide to rebuild all indexes with this command:
ALTER INDEX ALL ON dbo.CustomerContact
After I do this, what will I see for the index status?

See possible answers