My Azure ARM template development workflow
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2018-01-03 (first published: 2017-12-13)
1,290 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2018-01-03 (first published: 2017-12-13)
1,290 reads
Have you ever wanted to have two different queries open up at the same time where you could see them,...
2018-01-03
334 reads
I have been working on a new information session, which I’m hoping to deliver this year. It’s about one of...
2018-01-03
310 reads
I have a twitter poll running asking "What is the oldest version of SQL Server you are running?", to use...
2018-01-03
426 reads
Happy New Year! My New Year's resolution for 2018 is to help you become a better SQL developer.
I want to start off with that today by showing you a...
2018-01-02
14 reads
So I’ve spoken to more than one DBA who is not familiar with using the command prompt (aka command line)...
2018-01-02
401 reads
A while back you may have caught my blog post introducing the Power BI Chat Bot 9000. Since posting that...
2018-01-02 (first published: 2017-12-12)
1,336 reads
This is part 1 of 2 part series on taking smart backups. Part 1 will be taking smart transaction logs...
2018-01-02
183 reads
It’s a new year, and if you read my post almost 2 week’s ago, you know that I’ve already started...
2018-01-02
846 reads
In this module you will learn how to use the Social Network Graph Custom Visual. The Social Network Graph allows...
2018-01-02 (first published: 2017-12-12)
1,956 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