Positive or Negative
Today Steve Jones wonders if the way you choose to design a database says something about you.
2015-10-23
188 reads
Today Steve Jones wonders if the way you choose to design a database says something about you.
2015-10-23
188 reads
Last week I spoke at SQL in the City 2015 in London, and it was a great event. We had...
2015-10-23
622 reads
Last week I spoke at SQL in the City 2015 in London, and it was a great event. We had...
2015-10-23
412 reads
2015-10-23
1,450 reads
I’m excited. Git support is growing in SQL Source Control and the release recently contains Git push/pull support. If you...
2015-10-22
1,941 reads
As data professionals, we might carry lots of information with us that relates to our organization. Will we get caught up in government issues as we cross borders?
2015-10-22
203 reads
The CAP Theorem talks about the properties of distributed systems, and how you can really only have two of them in any system.
2015-10-21
107 reads
A quick tip to help you set your object names to your preferred case in T-SQL code.
2015-10-21 (first published: 2012-05-01)
2,272 reads
It’s a week before the Networking Dinner at the PASS Summit. Andy Warren and I are hosting the event next...
2015-10-20
492 reads
It’s a week before the Networking Dinner at the PASS Summit. Andy Warren and I are hosting the event next...
2015-10-20
535 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