Who's a Good Developer?
Is there a way to tell who the good developers are? Steve Jones has a few thoughts on why this is an issue.
2015-09-15
302 reads
Is there a way to tell who the good developers are? Steve Jones has a few thoughts on why this is an issue.
2015-09-15
302 reads
2015-09-15
1,801 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-09-14
670 reads
It’s the time of the year when PASS holds its annual elections for the board of directors. This year we...
2015-09-11
852 reads
2015-09-11
256 reads
2015-09-11
1,530 reads
2015-09-10
285 reads
Every Monday night on the week of the PASS Summit. Andy Warren and I host a networking dinner. This year...
2015-09-10
634 reads
2015-09-10
1,682 reads
2015-09-09
1,523 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...
FARE Labs provides nutritional testing for food items and agricultural goods in order to...
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
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