Starting up a Pass Chapter
I am on my way in setting up a Pass chapter on our tiny Caribbean island. I had no clue...
2009-06-17
594 reads
I am on my way in setting up a Pass chapter on our tiny Caribbean island. I had no clue...
2009-06-17
594 reads
Part 1 discussed ways to find opportunities, Part 2 was about how to get more interviews, and today we’ll cover...
2009-06-17
989 reads
I added a new blog to my reader today: The Client Revolution.
I heard about this from @NeilDavidson, and he mentioned...
2009-06-16
660 reads
I was out Friday night with family at Parker Days, the festival downtown in my little city and checked email...
2009-06-16
701 reads
I wasn’t able to attend this event, but did participate as a sponsor and I had this follow up message...
2009-06-16
645 reads
The DevTeach/SQLTeach keynote was from Tim Huckaby, founder of InterKnowlogy.
DevTeach/SQLTeach was held this past June 8-12 in Vancouver, BC at...
2009-06-16
729 reads
Having been married to Microsoft for most of my professional career doesn’t mean I drink the Kool-Aid.
I have had...
2009-06-16
762 reads
Yesterday I posted Part 1 containing five ideas for those looking for work. Today I’m going to focus on what...
2009-06-16
992 reads
This is part 1 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-06-15
1,687 reads
I didn’t attend, but wanted to get this written down somewhere!
I’m just catching up on email, Ken Starnes said all...
2009-06-15
538 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