SQL Source Control and Git–Getting Started
It seems as though Git is taking the world by storm as the Version Control System (VCS) of choice. TFS...
2015-10-05
531 reads
It seems as though Git is taking the world by storm as the Version Control System (VCS) of choice. TFS...
2015-10-05
531 reads
Security alerts and concerns are serious, but that doesn't mean that everyone will treat them that way.
2015-10-05
91 reads
It’s been a long time since I wrote about my workspace, however I made a change recently. This was the...
2015-10-02
350 reads
It’s been a long time since I wrote about my workspace, however I made a change recently. This was the...
2015-10-02
621 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-10-02 (first published: 2015-09-24)
2,706 reads
2015-10-02
1,251 reads
I learned a new trick with SQL Data Generator that I wasn’t aware of previously. I think this is a...
2015-09-30
1,001 reads
Last week we received the results of the PASS Board of Directors elections for 2015. Jen Stirrup and Tim Ford...
2015-09-29
812 reads
Last week we received the results of the PASS Board of Directors elections for 2015. Jen Stirrup and Tim Ford...
2015-09-29
977 reads
2015-09-29
1,582 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