ARMED - Azure ARM VS Code extension
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
41 reads
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
41 reads
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
56 reads
Azure data centers and Regions:
Azure data centers are located worldwide and a team/division MCIO (Microsoft Cloud Infrastructure and Operations) manages all the data centers...
2017-12-06 (first published: 2017-11-24)
1,753 reads
Security is very much on our minds these days. Scarcely a day goes by without hearing of a yet another...
2017-12-06 (first published: 2017-11-27)
1,587 reads
It’s one week to SQL in the City 2017, once again streamed. I’ll be traveling this weekend to the Redgate...
2017-12-06
1,049 reads
The Data Migration Assistant is a great tool developed to assess your SQL Server environment for a migration to a...
2017-12-06
977 reads
On Thursday, December 14, at 3 PM Eastern, I will be giving a presentation on SQL injection. Registration is required...
2017-12-06
484 reads
I recently worked on a project where a client wanted to use Biml to create SSIS packages to stage data...
2017-12-05 (first published: 2017-11-22)
1,273 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan - you get a weekly email packed with all the...
2017-12-05
659 reads
SQL Server's STATISTICS IO reporting is a great tool to help you performance tune queries.
Usually the goal of performance tuning is to make your query run faster. One of...
2017-12-05
64 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