Unused Heaps? - Quick Tips: Day 10
Don't forget! This coming Monday is the last Monday to win a free month of Pluralsight! All it takes is...
2013-12-26 (first published: 2013-12-20)
1,717 reads
Don't forget! This coming Monday is the last Monday to win a free month of Pluralsight! All it takes is...
2013-12-26 (first published: 2013-12-20)
1,717 reads
Small disclaimer
I'm going to file this one under rant. Let me first say that there are some wonderful recruiting agencies...
2013-12-19
649 reads
Winner Announcement!
The third winner of this month is Annapu Reddy Gayathri! I've seen a nice increase of participants so far. I...
2013-12-18
438 reads
Recently we were talking about Backups and how you need to test them often. The most complete way to test...
2013-12-17
640 reads
Monday Giveaway!
It's Monday again! I know we all hate Mondays, but let's have a Fun Monday!It's another week to give...
2013-12-16
656 reads
Let's keep this talk going about what you can do. We know I'm rather big on user groups and SQL...
2013-12-13
447 reads
Well, we talked about user groups... Let's talk about their big brother; SQL Saturdays. @SQLCenturion runs them here in OKC. They...
2013-12-12
472 reads
Today's winner is! Aadhar Joshi!
Congratulations for winning a free month of PluralSight. I'm E-Mailing you the code right now.
We still...
2013-12-11
539 reads
As a reminder, we have one more day before this weeks giveaway is over. All you need is a single...
2013-12-10
534 reads
We have 16 days until Christmas. Since I started this blog, I've posted every day Monday through Friday. I am...
2013-12-09
375 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...
Has anyone written a wrapper function (or similar) around STRING_AGG() to allow the retrieval...
Putting this here as we're currently on SQL Server 2019 installed on Windows Server...
Comments posted to this topic are about the item Never is Not the Policy
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