PASS Summit Magic: The Prestige
Ta-DA!!!!
So we started this show with the Pledge, got wowed with the Turn and finally we’ve come to the last...
2010-11-30
1,845 reads
Ta-DA!!!!
So we started this show with the Pledge, got wowed with the Turn and finally we’ve come to the last...
2010-11-30
1,845 reads
So looks like we have another blog party on our hands, this time courtesy of Jen McCown (Blog | Twitter), one...
2010-11-19
1,855 reads
Watch closely...
I mentioned in my last post that the Turn is the point in the act where the magician executes...
2010-11-15
1,484 reads
Well, it’s the final day of PASS Summit and the week’s final keynote! Today’s keynote will be delivered by Dr....
2010-11-11
514 reads
It’s Day 2 of the PASS Summit and here we are again live blogging the event.
From the Summit site:
Today Tom...
2010-11-10
408 reads
It’s the first day of the PASS Summit 2010 and I”ll be live blogging the first keynote here. Click on...
2010-11-09
516 reads
Not quite Mount Doom but...
As some of you may know, I’ve recently transitioned over from the fabulous life of being...
2010-11-04
609 reads
Hate to post this late but just wanted to let everyone know I’ll be presenting for Brazil’s Worldwide Online Tech...
2010-10-29
1,470 reads
This is just a quick note to remind everyone I’ll be presenting tomorrow, Tuesday October 26th 2010 for the PragmaticWorks...
2010-10-25
564 reads
This past weekend I had the pleasure of presenting at another great SQLSaturday event, number 49 actually and the 3rd...
2010-10-21
1,174 reads
By James Serra
Microsoft Fabric makes it wonderfully easy to put many analytics workloads on one platform....
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...
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