The Lost Hero – A review
With what looks to be five books planned in a new series by Rick Riordan, people have some good fantasy...
2011-01-25
546 reads
With what looks to be five books planned in a new series by Rick Riordan, people have some good fantasy...
2011-01-25
546 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning exercise when I come across something that I either...
2011-01-25
11 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning...
2011-01-25
654 reads
Someone posted a note saying that their backups were really large and slow. So they were trying to manage their...
2011-01-25
1,462 reads
This is a temporary post that was not deleted. Please delete this manually. (983091ab-b664-45c1-9b17-9e54b839020e – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
Digg This PostStumble This Post
2011-01-25
425 reads
#46-SQL Azure – Cloud Database Coolness
Don't miss this lunch.
Speaker: Scott Klein
Add To Outlook: Add To CalendarMeeting URL: https://www.livemeeting.com/cc/usergroups/join?id=3BGZJG&role=attend
Date and Time:1/26/2011 11:30:00 AM...
2011-01-25
719 reads
If you missed my PASS Professional Development Virtual Chapter Webcast “Getting Started With Consulting” last week, it’s now available online.
I...
2011-01-25
808 reads
We are in the final stages of selecting the speakers for the SQLRally May 11th through the 13th in sunny...
2011-01-25
672 reads
Now it’s week three of voting for the upcoming SQLRally. This week, we are voting for the Enterprise Database Administration...
2011-01-25
594 reads
This post is about two things:
1) Your Page Verification Settings are Critical
You should confirm you are running with the correct...
2011-01-25
1,292 reads
Disclaimer: The following is built with Claude Code. Just need to justify my $100/mo...
By Brian Kelley
I developed these rules a while back, before COVID. I had a period of...
By Steve Jones
Someone asked why I would use TRY_PARSE after I posted a question at SQL...
I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers