Community Involvement–Why Wait?
Everyone has a story; some stories are similar while some stories are vastly different. People always make the statement that...
2015-11-12
613 reads
Everyone has a story; some stories are similar while some stories are vastly different. People always make the statement that...
2015-11-12
613 reads
T-SQL Tuesday is here again. I’ve had good intentions the past few times this event has come around and even...
2015-11-13 (first published: 2015-11-10)
1,972 reads
The day finally came and I was fortunate, no I was blessed to be a part of the PASS Summit...
2015-11-04
528 reads
As I sit here in an offshoot of the convention center, I started reflecting back to this morning’s keynote for...
2015-10-29
854 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
413 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
318 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
526 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
340 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
451 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
327 reads
In today’s Software Development Life Cycle (SDLC), having a robust build pipeline is very...
By Steve Jones
I had someone ask me about using triggers to detect changes in their tables....
By Kevin3NF
Things your cloud vendor may not tell you Here’s a common theme I...
Hi, I have a requirement to fetch the year from an imported .csv file...
I will have to test this next week, but will not have a chance...
I want to add a condition in the joining columns part of the merge...
I have a table of products in SQL Server 2022. There are sequential items in the table with ProductIDs of 1, 2, 3, 4, 5, 6, 7, 8, 9, 10. If I run this code, how many rows are returned?
SELECT * FROM dbo.Products WHERE ProductID BETWEEN 4 AND 7;See possible answers