Setting Up Pi-Hole.Net
I saw a tweet a short time ago from Drew Furgiuele about pi-hole.net. He noted this was a near use...
2018-07-06
471 reads
I saw a tweet a short time ago from Drew Furgiuele about pi-hole.net. He noted this was a near use...
2018-07-06
471 reads
The use of NULL values in a database can be controversial. Today Steve talks about his views on this concept.
2018-07-06
147 reads
2018-07-06
703 reads
2018-07-05
528 reads
This is a short series of posts on the courses I took with Brent Ozar. I actually completed the courses...
2018-07-05 (first published: 2018-06-28)
2,715 reads
I saw a report of a problem building a database with ReadyRoll in Azure SQL Database. This person wanted to...
2018-07-05 (first published: 2017-08-02)
1,595 reads
2018-07-05
902 reads
2018-07-04
44 reads
We (Redgate) released SQL Change Automation a few weeks back. This is the first stage to implementing a combined toolset...
2018-07-04
1,002 reads
2018-07-04
745 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