2009-01-05
3,167 reads
2009-01-05
3,167 reads
Fog Creek Software has a new headquarters and the offices look amazing. Steve Jones talks about the value of a beautiful space.
2009-01-05
798 reads
Fog Creek Software has a new headquarters and the offices look amazing. Steve Jones talks about the value of a beautiful space.
2009-01-05
524 reads
Fog Creek Software has a new headquarters and the offices look amazing. Steve Jones talks about the value of a beautiful space.
2009-01-05
538 reads
Steve Jones talks about one of the least favorite things for IT people: documentation. How much do you really need to do?
2009-01-04
742 reads
Steve Jones talks about one of the least favorite things for IT people: documentation. How much do you really need to do?
2009-01-04
792 reads
Steve Jones talks about one of the least favorite things for IT people: documentation. How much do you really need to do?
2009-01-04
716 reads
2009-01-02
2,916 reads
I'm not a big goals person. I think it's a good idea to set goals, and they can help you,...
2009-01-01
446 reads
I was re-awarded MVP status from Microsoft for 2009. Since I didn’t hear anything to the contrary in the last...
2009-01-01
454 reads
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...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
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
Comments posted to this topic are about the item Everything is the right question...
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