Summit 2013 – Part the First
While not technically the first day of Summit since the official start is yet to come, here are my thoughts...
2013-10-16
654 reads
While not technically the first day of Summit since the official start is yet to come, here are my thoughts...
2013-10-16
654 reads
While not technically the first day of Summit since the official start is yet to come, here are my thoughts on Sunday and Monday of PASS Summit 2013. For...
2013-10-16
1 reads
Problem: When you are performing many DML operations and makes tempdb contesnion on it, You may get wait_resource of 2.1.103...
2013-10-16
743 reads
Are you attending the SQL PASS Summit conference in Charlotte, NC this week? If so, let’s meet up! If not,...
2013-10-15
895 reads
sys.dm_io_pending_io_requests DMV (Dynamic Management View), described by BOL as follows: http://msdn.microsoft.com/en-us/library/ms188762.aspx
Returns a row for each pending I/O request in SQL...
2013-10-15
1,392 reads
It’s not the first Monday of October, instead it’s the second Tuesday (oops, had Wednesday in here originally). As we...
2013-10-15
621 reads
Today, October 15, 2013: PASS SUMMIT DAY1
It’s October, and it’s PASS SQL Summit time, 2013! PASS Summit is the world's largest,...
2013-10-15
1,240 reads
So, is this your first time attending PASS Summit? Confused, shy, overwhelmed, and don’t know what to do first? Or...
2013-10-15
1,036 reads
This is my first time to attend the PASS Summit. I was very excited about it, and I planned to...
2013-10-15
317 reads
Weather a bit cloudy today, a little rain and a little cool – not Seattle, but not Orlando either! Breakfast at...
2013-10-15
454 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...
FARE Labs provides nutritional testing for food items and agricultural goods in order to...
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
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