The SQLServerCentral.com IT Research Library
We've partnered with BitPipe and TechTarget to bring a huge collection of white papers and other valuable information to you for free!
2005-05-12
3,665 reads
We've partnered with BitPipe and TechTarget to bring a huge collection of white papers and other valuable information to you for free!
2005-05-12
3,665 reads
New books from SQLServerCentral.com. The latest versions of our very popular SQL Server reference materials are now available.
2005-05-11
5,018 reads
A Longtime SQLServerCentral.com member and a very valued member of the community has just received a great honor in our field. Take a moment to read and add your congratulations.
2005-04-08
4,396 reads
SQLServerCentral.com is starting a new contest, one where we'll have a winner every week as long as we can find prizes. Read on and see how you can enter.
2005-03-04
3,706 reads
Last year we started a magazine, the SQL Server Standard, a publication devoted to SQL Server with articles written by you and me, people who work with the product in the real world. Now we're pleased to announce that eSubscriptions to the magazine in PDF format are now available.
2005-02-16
2,907 reads
We would like to think that most DBAs are certified as at least MCPs if not MCDBAs. We have worked out a deal with Microsoft to provide yet another benefit for MCPs. Read on to find out more.
2005-02-15
6,147 reads
SQLServerCentral.com is having a sale. Support the site and get some valuable information for your library.
2005-01-24
2,627 reads
The staff at SQLServerCentral.com really appreciates your support and contributions to the community. We are always looking to improve things here and we have made a couple changes to the way our email system works.
2005-01-11
2,977 reads
Trey Johnson, a PASS board member and a senior business intelligence consultant, is doing a webcast on Tuesday. Join him for a great talk getting a business intelligence system up and successful in your environment.
2005-01-10
2,660 reads
Many thanks from Andy, Brian, and Steve to everyone for their participation and efforts in building the best SQL Server site and the best community on the Internet. In appreciation of their efforts, we've given away a few gifts to some random members.
2005-01-10
2,478 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