Choosing Your Tasks
Today Steve Jones asks about your job and if you get to pick the things you work on or is most of your time assigned to tasks by someone else?
2015-10-08 (first published: 2011-05-13)
249 reads
Today Steve Jones asks about your job and if you get to pick the things you work on or is most of your time assigned to tasks by someone else?
2015-10-08 (first published: 2011-05-13)
249 reads
This is my last day at home for a long time. At least long by my standards. I head to...
2015-10-07
396 reads
This is my last day at home for a long time. At least long by my standards. I head to...
2015-10-07
562 reads
Part 2 of Steve Jones' series on version control. This article examines how you can track the changes you have made in a development cycle.
2015-10-07 (first published: 2001-11-26)
13,460 reads
Part 3 of Steve Jones' series on version control. This article examines how migrate your changes to your live systems.
2015-10-07 (first published: 2001-12-10)
12,831 reads
Part 4 of Steve Jones' series on version control. This article examines how back out your changes from your live systems.
2015-10-07 (first published: 2001-12-17)
8,851 reads
Part 1 of Steve Jones series on version control and SQL Server. This article examines how you can work with version control and SQL objects.
2015-10-07 (first published: 2001-11-22)
20,837 reads
2015-10-06
211 reads
I’ve been on a testing kick, trying to formalize the ad hoc queries I’ve run into something that’s easier to...
2015-10-06
663 reads
I’ve been on a testing kick, trying to formalize the ad hoc queries I’ve run into something that’s easier to...
2015-10-06
556 reads
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
By Steve Jones
los vidados – n. the half-remembered acquaintances you knew years ago, who you might...
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
I'm trying to get this string_agg to put all the 'comments' into one result...
Comments posted to this topic are about the item Vectors in SQL Server 2025
Comments posted to this topic are about the item Odd Sequences
What values are returned from this code?
CREATE SEQUENCE NumericSequence
AS NUMERIC(5,1)
START WITH 1.0
INCREMENT BY 0.1;
GO
SELECT NEXT VALUE FOR NumericSequence
GO
SELECT NEXT VALUE FOR NumericSequence
GO See possible answers