Waiting for SP1
This Friday Steve Jones wants to ask a poll about SQL Server 2012. Do you think it's ready for your production servers?
2012-03-16
168 reads
This Friday Steve Jones wants to ask a poll about SQL Server 2012. Do you think it's ready for your production servers?
2012-03-16
168 reads
Recently the Azure service had an outage and Steve Jones has a few comments on this and why it might not be worse than your own company's IT group.
2012-03-14
166 reads
Someone asked the question recently about allowing a user to run a process,but not execute the individual pieces of the...
2012-03-14
4,194 reads
Steve Jones wonders today if data professionals get a little too hung up on the consistency issues between servers.
2012-03-13
150 reads
It’s that time of the month again, T-SQL Tuesday Tuesday. This month Argenis Fernandez, MCM, and big round SQL teddy-bear...
2012-03-13
1,171 reads
2012-03-13
2,219 reads
This past week the big news in the SQL Server space was the release to manufacturing of SQL Server 2012.
2012-03-12
389 reads
This Friday Steve Jones wants to know about the older versions you are running in your production environments. Are you still using SQL Server 2000?
2012-03-09
183 reads
For a guy that was looking to not travel much, it seems that I’ve got way more on my plate...
2012-03-09
1,019 reads
First, only support Women in Technology if you want to. It’s an idea that appeals to some, but not to...
2012-03-09
957 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