2015-09-08
160 reads
2015-09-08
160 reads
2015-09-08
1,636 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-09-07
639 reads
This week Steve Jones looks at the idea of combining some NoSQL concepts inside of SQL Server.
2015-09-07
297 reads
I was excited to hear about the v12 Azure databases supporting CLR assemblies. Mainly because I’ve been doing testing work...
2015-09-07 (first published: 2015-08-27)
4,088 reads
2015-09-07
1,928 reads
This Friday Steve Jones looks at the topic of defaults and whether you use the model database to adjust yours.
2015-09-04
99 reads
2015-09-04
1,676 reads
A few years ago Andy Warren had this idea for a networking dinner. We had been chatting about all the...
2015-09-03
872 reads
When is it worth upgrading your SQL Server? It's a question Steve Jones explores today.
2015-09-03
226 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...
FARE Labs provides nutritional testing for food items and agricultural goods in order to...
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
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