2004-07-28
2,413 reads
2004-07-28
2,413 reads
2004-07-27
3,309 reads
2004-07-26
2,061 reads
The highly anticipated Beta 2 of SQL Server 2005 aka Yukon, was released today (Monday, July 26).
2004-07-26
7,685 reads
2004-07-23
2,454 reads
2004-07-22
2,298 reads
2004-07-21
1,980 reads
2004-07-20
2,135 reads
2004-07-19
2,170 reads
We've been working on it over the years, trying to get some search engine that works. Well, we're trying a new one from Surfinity. Give it a try and let us know how it works. Read on for a few details about what we're using.
2004-07-19
3,224 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