PASS Summit 2009 Key Note 2
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
515 reads
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
515 reads
Dr. David DeWitt
“I’m not a doctor.” This is going to be good. “From 1 to 1000 MIPS” He’s doing great....
2009-11-05
690 reads
YAAAAAH!
The PASS Summit is pretty amazing. Yesterday I sat through the key notes from Microsoft. I was at the bloggers...
2009-11-04
566 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
512 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
597 reads
More demos using Analysis Services from R2. They’re showing how you can refresh data & reports without having to write a...
2009-11-04
561 reads
Monday at the PASS Summit. It’s always a big day. This year it’s the eve of the Summit and the...
2009-11-03
770 reads
Set up and and ready to go. Wayne Snyder is going to open the ceremonies and the key note will...
2009-11-03
386 reads
Bob Muglia opened with January 13, 1988, when the Microsoft Sybase Ashton-Tate SQL Server program was launched. Apparently Bill Gates...
2009-11-03
380 reads
Now up is Ted Kummert of Microsoft.
He’s giving us a good overview of some of the technology coming up. He’s...
2009-11-03
552 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 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...
Has anyone written a wrapper function (or similar) around STRING_AGG() to allow the retrieval...
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