First Class Jobs
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
111 reads
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
111 reads
Learning more about your craft can translate into more earnings, but it won't be easy.
2016-12-01
117 reads
There are always people that ask workers to deceive, defraud, or mislead customers. This is true for software developers as well.
2016-11-30
117 reads
Today Steve Jones looks at the CREATE OR ALTER syntax, added in SQL Server 2016 SP1.
2016-11-29
180 reads
Today Steve Jones discusses the need to hire the people to do the tasks we need done, not the position we filled.
2016-11-28
137 reads
The issue of copyright for online scripts is a grey area. If a script is published without any form of copyright notice, most people assume that it is freely available for reuse. It's not necessarily the case.
2016-11-25 (first published: 2009-04-20)
686 reads
2016-11-24
71 reads
Today Steve Jones looks at the potential downfalls of monitoring every change without lots of filtering.
2016-11-22
109 reads
2016-11-21
180 reads
2016-11-21
178 reads
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
By Steve Jones
Thanks to everyone that attended my sessions at VS Live San Diego yesterday. It...
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
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