Excel as a Database Professional
People ask me all the time how to become a DBA. This is a topic that so many colleagues of
mine...
2015-09-24
2,144 reads
People ask me all the time how to become a DBA. This is a topic that so many colleagues of
mine...
2015-09-24
2,144 reads
PearlKnows WeB log, Stardate 2015.9.8: This week’s topic is strategies for
managing an enterprise, brought to us by one half of...
2015-09-08
3,104 reads
We have another great 1-DAY training workshop coming to New York City at MS NYC HQ 11 Times Square on...
2015-08-20 (first published: 2015-08-11)
1,561 reads
Below is the original article in its entirety, that was published on the Americas MVP Community Facebook page, on July...
2015-08-20
1,408 reads
Tomorrow Wednesday, August 12, 2015 at 6PM EDT, my friend and SQL MVP colleague, Edwin Sarmiento will be in town...
2015-08-11
1,173 reads
Coming this Saturday, upstate rules, the official capitol of New York State is #SQLSat386, in Albany! Check out their event...
2015-07-23
1,058 reads
PASS HEADQUARTERS:
The PASS Performance Virtual Chapter’s 2015 Performance Palooza is
tomorrow starting at 10AM Central Time! This event will feature...
2015-07-22
1,217 reads
Happy T-SQL Tuesday,
July 14, 2015! (I have been time traveling, and now back on this continuum ;-) @SQLBek, Andy Yun, has...
2015-07-22 (first published: 2015-07-07)
2,647 reads
Kicking off the SQLSaturday#410 event down in Chattanooga, Tennessee, is the Pre-Con event Tune Like a Guru, by SQLGuru Kevin...
2015-06-25
971 reads
June 13, 2015 - SQLSat379: Just wanted to make mention of the upcoming SQLSaturday#379 down in South Florida, it will be...
2015-06-11
1,006 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...
Comments posted to this topic are about the item Lessons from the Postmark-MCP Backdoor
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:...
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