PASS Summit 2009 - PowerShell and Performance
Over the weekend I received the great news that I've been selected to present a new session, Gather SQL Server...
2009-06-15
350 reads
Over the weekend I received the great news that I've been selected to present a new session, Gather SQL Server...
2009-06-15
350 reads
A week ago I spoke at the Pensacola SQLSaturday event to about 30 people. A few drifted in late, so...
2009-06-15
917 reads
Last Friday I got the official notice that I've been selected to present a community session at the 2009 PASS...
2009-06-15
460 reads
I was recently asked for advice about seeking a job, a request we all get from time to time. In...
2009-06-15
715 reads
I received my notification from the PASS Program Committee on Friday evening,
and found out that I will not be...
2009-06-15
594 reads
There’s a contest going on at PASS looking for answers to “Best Thing I Learned at PASS”. I don’t want...
2009-06-15
1,059 reads
Way back on May 19 I wrote about my search for a new laptop bag to replace my somewhat tattered...
2009-06-14
708 reads
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
756 reads
This past Tuesday, Brian Knight visited the St. Louis SQL Server User Group to present on SSIS. The day ended...
2009-06-14
555 reads
I read, a lot. I’ve been a prolific reader all my adult life.
I use to split my reading between...
2009-06-14
1,119 reads
By Steve Jones
ecstatic shock – n. a surge of energy upon catching a glimpse from someone...
By Chris Yates
The New Arena of Leadership The role of the Chief Data Officer is no...
Presenting you with an updated version of our sp_snapshot procedure, allowing you to easily...
Just saw the "Azure Extension for SQL Server" Does anyone has experience with it?...
I've noticed several instances of what looks like a recursive insert with the format:...
Comments posted to this topic are about the item Cleaning Up the Cloud
I have a table with this data:
TravelLogID CityID StartDate EndDate 1 1 2025-01-01 2025-01-06 2 2 2025-01-01 2025-01-06 3 3 2025-01-01 2025-01-06 4 4 2025-01-01 2025-01-06 5 5 2025-01-01 2025-01-06I run this code:
SELECT IDENT_CURRENT('TravelLog')I get the value 5 back. Now I do this:
SET IDENTITY_INSERT dbo.TravelLog ON INSERT dbo.TravelLog ( TravelLogID, CityID, StartDate, EndDate ) VALUES (25, 5, '2025-09-12', '2025-09-17') SET IDENTITY_INSERT dbo.TravelLog OFFI now run this code.
DBCC CHECKIDENT(TravelLog) GO INSERT dbo.TravelLog ( CityID, StartDate, EndDate ) VALUES (4, '2025-10-14', '2025-10-17') GOWhat is the value for TravelLogID for the row I inserted for CityID 4 and dates starting on 14 Oct 2025? See possible answers