Finding a New Laptop Bag
For the past couple years I've been using a Targus (I think the model 300 right now) and they've been...
2009-05-18
894 reads
For the past couple years I've been using a Targus (I think the model 300 right now) and they've been...
2009-05-18
894 reads
I stopped by Compusa on the way home to pick up a package of blank DVD's and did the 10...
2009-05-18
785 reads
If you are a leader of a Microsoft-related user’s group, and you haven’t done so already, you will want to...
2009-05-18
569 reads
If you want to be the first on your block to see the CTP (Community Technology Preview) of SQL Server...
2009-05-18
492 reads
As I'm digging more into SQL Server 2008 encryption I'm learning some interesting things about how SQL Server handles encryption....
2009-05-18
2,705 reads
Keynote speaker, Bill Veghte, Senior Vice President of Windows Business at Microsoft.
TechEd 2009 was started with a keynote presentation from...
2009-05-18
1,233 reads
My rolling 30 day post count dropped crazily this weekend. I noticed, but with family committments, I didn't do anything...
2009-05-17
638 reads
As none of us are immune to the current financial crisis, and your development projects have probably come to a...
2009-05-16
770 reads
I went over last night to do a presentation to the group managed by Bonnie and Lynn. Had 11 in...
2009-05-15
643 reads
Note:Since there have been several comments on this, I'm using parameterization at the application layer in the security sense of...
2009-05-15
2,707 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