Mini-Me
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
883 reads
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
883 reads
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
880 reads
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
86 reads
I don't mean to comlpain, and I certainly don't need any more bags, but when I checked in Monday night...
2008-11-18
646 reads
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
2008-11-18
172 reads
2008-11-18
647 reads
I endorsed Andy Warren for the board the other day, and I'll stand by that. I'm biased, so if you're...
2008-11-18
1,255 reads
As data professionals we need to be sure that we can present back the data we receive. Perhaps other people should embrace this mantra in other lines of work.
2008-11-18
89 reads
As data professionals we need to be sure that we can present back the data we receive. Perhaps other people should embrace this mantra in other lines of work.
2008-11-18
673 reads
As data professionals we need to be sure that we can present back the data we receive. Perhaps other people should embrace this mantra in other lines of work.
2008-11-18
678 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