Focus on Growth in Your Career
Steve has some advice on how to grow your career by growing your skills and developing deeper knowledge.
2023-12-08
200 reads
Steve has some advice on how to grow your career by growing your skills and developing deeper knowledge.
2023-12-08
200 reads
A stagnant career can be stifling, and it can make you unhappy at work, where you spend a lot of time. Steve has a few thoughts on how to avoid that.
2023-12-06
200 reads
Steve reminds people today that the recommendations from execution plans aren't always what you want to use when tuning your database.
2023-12-04
731 reads
Someone generated a fake speaker profile for their conference, which Steve finds disturbing.
2023-12-02
548 reads
If you are considering moving into management as a career goal, read today's editorial from Steve, with some advice based on an interesting article from someone with experience at Facebook and Stripe.
2023-12-01
124 reads
With new vehicles becoming more and more computerized and controlled, is data privacy an issue?
2023-11-29
214 reads
Today Steve discusses an aspect of AI that many people are concerned about: data security. Read more and think about how this might affect your organization.
2023-11-27
280 reads
Hero, Champion, Inspiration. These are words that are bantered around about people regularly. Joe was a hero when he saved that puppy. Betty was the champion runner and won the race. Pat was an inspiration; they work so hard. Hero and champion are universally understood as positive things. Inspiration is typically used as a positive, […]
2023-11-25
99 reads
2023-11-24
169 reads
Today Steve talks about data modeling and how standards can transfer knowledge between developers.
2023-11-22
490 reads
By Steve Jones
I recently started playing with the MCP Server for SQL Server, which is a...
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...
Hub Via Wa 628218154374 Alamat Jl. A. R. Hakim No.2, Mangkukusuman, Kec. Tegal Tim.,...
Hub Via Wa 628217555651 Alamat Jl. Jend. Sudirman Jl. Diponegoro No.15, Salatiga, Kec. Sidorejo,...
Hub Via Wa:62817825533 Alamat Jl. Diponegoro No.27, Dukuh, Kec. Pekalongan Utara, Kota Pekalongan, Jawa...
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_CustomerPhone
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.CustomerContact rebuildAfter I do this, what will I see for the index status? See possible answers