Oh, The Free Stuff!
Ah, Shwag
I’ve been doing the whole conference thing for a while. Not as long as some but quite a while....
2013-10-08
887 reads
Ah, Shwag
I’ve been doing the whole conference thing for a while. Not as long as some but quite a while....
2013-10-08
887 reads
There could be a number of reasons why you would want to change the default view on a SharePoint library....
2013-10-08
739 reads
It’s T-SQL Tuesday time, the second Tuesday of the month when we all coordinate our blog posts on a particular...
2013-10-08
989 reads
Where does he get all those wonderful toys? In the line made famous by Jack Nicholson’s Joker in the original...
2013-10-08
1,524 reads
The host for T-SQL Tuesday #47 is Kendal Van Dyke (blog|twitter), and his topic of choice is about the best...
2013-10-08
952 reads
This blog post is part of T-SQL Tuesday, a monthly SQL blog party with a rotating host and common topic....
2013-10-08
1,215 reads
This month we probably have the easiest topic I have ever seen for a TSQL Tuesday blog party. That isn’t a slight, but rather is something of a good...
2013-10-08
5 reads
This month we probably have the easiest topic I have ever seen for a TSQL Tuesday blog party. That isn’t...
2013-10-08
937 reads
It’s time for T-SQL Tuesday again and this time Kendal Van Dyke is asking for Your Best SQL Server SWAG....
2013-10-08
748 reads
She Can Dig It!
With today’s SQL Server instances, there easily be anywhere from a dozen to a hundred databases on...
2013-10-07
537 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