31 Days of SSIS – What The Sorts?! (7/31)
31 Days of SSIS
Welcome to day seventh day of the 31 Days of SSIS. If you are just joining the...
2011-01-07
544 reads
31 Days of SSIS
Welcome to day seventh day of the 31 Days of SSIS. If you are just joining the...
2011-01-07
544 reads
Thought I would drop a quick note on the January PASSMN meeting. We’re running a bit behind getting things ramped...
2011-01-06
472 reads
31 Days of SSIS
As I mentioned in the introductory post, I’m writing 31 Days of SSIS. In the first post...
2011-01-06
2,556 reads
Hopefully by now you’ve read the introductory post for the 31 Days of SSIS series that I am writing. Today...
2011-01-05
458 reads
She can dig it!
D Sharon PruittIt’s the eighth post in the plan cache series. I took a few days off...
2011-01-05
376 reads
31 Days of SSIS
Hopefully by now you’ve read the introductory post for the 31 Days of SSIS series that I...
2011-01-04
413 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2011-01-04
692 reads
Watching videos?! Su-ure!
Surprisingly it’s now my fourth week of blogging about the things that I’m doing to study for the...
2011-01-04
267 reads
31 Days of SSIS
As I mentioned in the introductory post, I’m writing 31 Days of SSIS. In yesterday’s post I...
2011-01-04
541 reads
Calling for Presenters!There’s still a couple months until the next 24 Hours of PASS. Even though it’s a bit of...
2011-01-03
299 reads
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...
SELECT * feels convenient, but in SQL Server it bloats I/O, burns network bandwidth,...
Comments posted to this topic are about the item Cleaning Up the Cloud
Comments posted to this topic are about the item The Maximum Value in the...
Comments posted to this topic are about the item Oracle Performance Tuning: Practical Techniques...
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