The BI World
It's been an interestng week here at the Microsoft BI Conference in Seattle and a first for me happened this...
2007-05-11
1,471 reads
It's been an interestng week here at the Microsoft BI Conference in Seattle and a first for me happened this...
2007-05-11
1,471 reads
I know writing and working on SQL Server is hard. It's a huge project and just managing that is hard....
2007-05-04
1,376 reads
Our next
meeting will be on Thursday, May
3rd, at 6:30 PM. Training Concepts will once again be our
gracious host....
2007-05-03
1,557 reads
Despite being without power for a few days, a hectic scramble at work to get things done, and kids off...
2007-05-01
1,472 reads
We had a blizzard on Tuesday in Denver. Apr 24 and we got nearly a foot of snow out at...
2007-04-25
1,426 reads
One thing is always certain about information technology: there is always change. This past week I was pitching in on...
2007-04-23
1,593 reads
I just finished the book Brute
Force: Cracking the Data Encryption Standard by Matt Curtin. It covers the work of...
2007-04-16
1,781 reads
The presentation How to Be a Consultant has been posted to the Midlands PASS Chapter website. The presentation was given...
2007-04-15
1,606 reads
Windows doesn't see 4GB. If you have a 32bit OS with 4GB of RAM, Windows can't see it all.
I saw...
2007-04-13
1,427 reads
I saw Brian's post on Microsoft's post on post sp2-fixes. Say that 10 times quickly.
They do a good job explaining...
2007-04-13
1,366 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