Tips on Getting Hired – Part 5
I think the hardest part about the job search is interviewing and not being selected. You keep saying “why” with...
2009-06-22
616 reads
I think the hardest part about the job search is interviewing and not being selected. You keep saying “why” with...
2009-06-22
616 reads
In a followup to Aaron Bertrand's recent blog post on Disaster Recovery, I'd like to mention something I always mention...
2009-06-22
372 reads
Microsoft has always been pretty good at one thing, ease on install.
One of the things I always says is...
2009-06-22
3,385 reads
I was reading a MCP training manual for SQL Server the other day. It was good. The whole of TSQL...
2009-06-22
1,747 reads
My friend Robert Cain was kind enough to include me on his list of big thinkers along with my business...
2009-06-22
810 reads
Getting a job is hard. If you’ve been lucky enough not to struggle for a job, don’t make the mistake...
2009-06-22
1,226 reads
No.
Blogging is not for everyone and you don't want to give the impression you are something you are not doing...
2009-06-22
1,605 reads
Today Pragmatic Works release it’s second comedic training video featuring Dustin Ryan as “Dustin” and Brian Knight as “Gary” Dustin’s...
2009-06-19
695 reads
If you haven't heard, PASS is running a contest where you could win conference registration to this year's PASS Community...
2009-06-19
1,270 reads
In my Modern Resume presentation, I tried to structure it to go from easy to hard things to do in...
2009-06-19
729 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