2015-09-02
2,164 reads
2015-09-02
2,164 reads
I’ve been working more with SQL Data Generator (SDG) because it solves some problems that many software developers have with...
2015-09-01
916 reads
It seems the software industry doesn't do a good job of planning and estimating software development efforts.
2015-09-01
190 reads
2015-09-01
1,449 reads
Does it make sense to avoid FKs for use other architectures in software development? Steve Jones isn't sure a a general rule this is the case.
2015-08-31
336 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-31
1,897 reads
2015-08-28
1,566 reads
T-SQL Tuesday is a monthly blog party where we get an invitation the first week of the month to write...
2015-08-25 (first published: 2015-08-14)
2,880 reads
I ran across a question recently from someone that received a similar message to the one showed in this image:
In...
2015-08-25
1,257 reads
2015-08-25
1,457 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