Look at the size of my BCHR
Are SQL Server DBAs prone to going around boasting about the size of their BCHR? And does it have any significance?
2009-01-12
382 reads
Are SQL Server DBAs prone to going around boasting about the size of their BCHR? And does it have any significance?
2009-01-12
382 reads
With the current economic downturn, many of us are wondering if we will still have a job by the end of this new year. Although DBAs are still in demand, no DBA job is 100% immune from layoffs. Brad suggests that now is the perfect time to invest in yourself.
2009-01-08
197 reads
Fog Creek Software has a new headquarters and the offices look amazing. Steve Jones talks about the value of a beautiful space.
2009-01-06
228 reads
In which Phil hears about an extra 'leap' second added over the new year, and broods on the missing INTERVAL datatype in SQL Server
2009-01-05
129 reads
This Friday, a guest poll and editorial from Adrian Nichols wondering about the value of experience in a particular area.
2009-01-02
211 reads
It's the first day of 2009 and Steve Jones gives a few predictions for the new year in this editorial.
2009-01-01
175 reads
Steve Jones looks back at the past year and database news that has occurred.
2008-12-31
121 reads
Steve Jones gives one last update on energy issues in the US in 2008 with a look at the construction and building industries.
2008-12-30
105 reads
Steve Jones is considering changes to SQLServerCentral and presents a few ideas today.
2008-12-29
166 reads
Steve Jones wonders if Microsoft is doing a good job with their efforts to patch SQL Server security issues?
2008-12-29
88 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...
Hub Via Wa 628218154374 Alamat Jl. A. R. Hakim No.2, Mangkukusuman, Kec. Tegal Tim.,...
Hub Via Wa 628217555651 Alamat Jl. Jend. Sudirman Jl. Diponegoro No.15, Salatiga, Kec. Sidorejo,...
Hub Via Wa:62817825533 Alamat Jl. Diponegoro No.27, Dukuh, Kec. Pekalongan Utara, Kota Pekalongan, Jawa...
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