"SQL Server: Bolts to Buzzwords" presentation for the Hammond .NET User Group at Southeastern Louisiana University
One of my favorite groups to speak for (aside from the Baton Rouge SQL Server User Group) is the Hammond...
2013-10-17
432 reads
One of my favorite groups to speak for (aside from the Baton Rouge SQL Server User Group) is the Hammond...
2013-10-17
432 reads
SQL Server 2014 CTP2(All new,shiny shiny !) availability was announced yesterday at #SQLPASS Summit.
Native backup encryption is one of the key...
2013-10-17
1,767 reads
Probably the most often asked question on SSC is about full transaction logs, and often full disks. It happened again...
2013-10-17
964 reads
After giving you the Top 10 Tips when synchronising your database with MailChimp, I thought why not write up the...
2013-10-17
1,158 reads
There is a way by which we can merge the .trc and .blg files to get a great view as...
2013-10-17 (first published: 2013-10-09)
6,333 reads
It's that time of year again, the annual PASS Summit is under way in Charlotte, NC!
For those of you who...
2013-10-17
1,072 reads
This is actually the first formal day of the PASS Summit, but it’s my third day here. I have already...
2013-10-17
390 reads
This is actually the first formal day of the PASS Summit, but it's my third day here. I have already...
2013-10-17
568 reads
PASS Summit Continues….
If you have been following my blog, in the myriad of PASS Summit 2013 related blogs, you’ve been...
2013-10-17
995 reads
KILT DAY!
Today we have to eat our vegetables and then get lots and lots of sweet desert.
Or.
Today we hear about...
2013-10-17
886 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