Your Tools
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
267 reads
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
267 reads
2015-02-18
599 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
319 reads
2015-02-16
90 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,099 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
235 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
98 reads
Chris Testa-O'Neil on the origins of SQL Bits and the joys of community events.
2015-02-10
170 reads
In which Phil Factor casts doubts on 'programming policies'. For certain, any IT team development requires plenty of methods of working that maximise productivity, but coding standards and ‘best practices’ have to be treated with caution. Programming rules can’t replace professional judgement
2015-02-09
212 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
211 reads
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
Comments posted to this topic are about the item Implementing Type 4 Slowly Changing...
Comments posted to this topic are about the item The Disabled Index
Comments posted to this topic are about the item Server-Level Table sizes
I run this code on SQL Server 2022.
CREATE TABLE Drink
(
drinkid INT NOT NULL
CONSTRAINT DrinkPK PRIMARY KEY CLUSTERED,
drinkname VARCHAR(20),
rating NUMERIC(2, 1)
)
GO
INSERT INTO Drink
(
drinkid,
drinkname,
rating
)
VALUES
(1, 'Margarita', 4.5),
(2, 'Mojito', 4.3),
(3, 'Old Fashioned', 4.7),
(4, 'Martini', 4.4),
(5, 'Cosmopolitan', 4.2)
GO
ALTER INDEX drinkpk ON dbo.drink DISABLE
GO
SELECT * FROM dbo.Drink
GO
What is the result? See possible answers