Get Away from the Heat and Learn some Database Version Control
I have enjoyed the trips I’ve made to New Orleans and Baton Rouge in the past. It’s a good getaway,...
2015-07-24
611 reads
I have enjoyed the trips I’ve made to New Orleans and Baton Rouge in the past. It’s a good getaway,...
2015-07-24
611 reads
The poll this week looks to the future and artificial intelligence. Steve Jones wonders if we'll ever really see this.
2015-07-24
149 reads
Recently someone sent me a question about service accounts. They weren’t sure how they should go about setting accounts up...
2015-07-23
543 reads
The job of the DBA is constantly evolving, but one thing has always been critical: access to data.
2015-07-23
246 reads
Last year at the PASS Summit, Kristen Benzel and Argenis Fernandez put on a fundraiser to raise money for Doctors...
2015-07-21
688 reads
We must learn to deal with the reality of our situation, along with the limitations.
2015-07-21
122 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-20
914 reads
One important skill is for the DBA or developer of the future is being sure they can present data to clients in a way they can use it.
2015-07-20
200 reads
2015-07-20
1,906 reads
2015-07-17
1,354 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