Award from MSSQLTIPS.com
Today, I am excited and humbled to learn that I am awarded “Rookie of the Year – 2014” by MSSQLTips.com.
I have...
2015-01-14
318 reads
Today, I am excited and humbled to learn that I am awarded “Rookie of the Year – 2014” by MSSQLTips.com.
I have...
2015-01-14
318 reads
If you have two columns in an Excel sheet, and you want to conditionally format fields in the second column...
2015-01-14
768 reads
This is a great little feature in SQL Prompt that I wrote about at SQLServerCentral. It’s Current statement Execution, which...
2015-01-14
1,280 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full details.
tldr; Download the filter from: https://agilesqlclub.codeplex.com/releases/view/610727 put the dll...
2015-01-14
53 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full...
2015-01-14
75 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full...
2015-01-14
1,240 reads
Long has the question been asked “Which Microsoft tool do I use for dashboards?”. SSRS, Excel, PowerView, Report Builder and PerformancePoint...
2015-01-14
2,280 reads
Different ways to find the weekend between two given dates. The SQL requires @begindate and @endate paramteters to be entered...
2015-01-14
1,047 reads
VMware has recently announced an online event for February 2nd that you don’t want to miss! Whatever it is, it’s going...
2015-01-14
576 reads
I have the pleasure and privilege to announce that I was awarded with the “Author of the Year” award at...
2015-01-13
517 reads
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...
By SQLPals
SQL Server gMSA: Why DBAs Still Aren't Using It in 2026 ...
Comments posted to this topic are about the item Never is Not the Policy
Comments posted to this topic are about the item Automating SSAS Multidimensional Security Audits...
Comments posted to this topic are about the item 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 disableI see this when I check the index status:
I decide to rebuild all indexes with this command:
ALTER INDEX ALL ON dbo.CustomerContactAfter I do this, what will I see for the index status? See possible answers