2010-04-02
71 reads
2010-04-02
71 reads
A change in the support for NULL values has Steve Jones commenting on the implications.
2010-04-01
762 reads
A guest editorial from Phil Factor that discusses ORMs and how they ca be used, or mis-used, in our applications.
2010-03-31
414 reads
With Steve Jones on vacation, we reprint on of his more popular editorials from the past. This was originally published on Feb 14, 2005.
2010-03-30
212 reads
Spatial support is coming to SQL Azure soon, and Steve Jones thinks about how the service could improve this support.
2010-03-29
64 reads
A guest editorial from Rodney Landrum looks at how we get advice from others in the wild, wild world of the Internet.
2010-03-26
156 reads
What happens when you burnout? Would you recognize when it happens? A guest editorial from Andy Warren talks about some of the signs and what you can do.
2010-03-25
497 reads
Steve Jones talks about the controversy surrounding the PASS Survey and future Summit announcements. And about how we, as data professionals, might subtly bias clients.
2010-03-24
140 reads
You can earn an MCITPro or an MCM in your DBA career, but there's a world of difference between those two. Steve Jones agrees with Simon Sabin that we need something in between.
2010-03-23
511 reads
All defensive programmers should, in general, avoid unsupported techniques. However, there is a balance to be struck between adherence to 'best practice' approaches to SQL programming, and the need to get the job done. Perhaps certain critical code would benefit from use of the age-old practice of double entry bookkeeping?
2010-03-22
997 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