December 2010 SSSOLV Reminder
Here is a quick reminder and a repost of the announcement from last week.
This month we will be broadcasting the...
2010-12-08
849 reads
Here is a quick reminder and a repost of the announcement from last week.
This month we will be broadcasting the...
2010-12-08
849 reads
Stumbled upon this PDF from quest which lists the important Perfmon counters and their acceptable values. A must print and...
2010-12-08
502 reads
There is only one week left to submit your abstract for the PASS SQLRally. This is a great opportunity for...
2010-12-08
364 reads
I received the email this week that I won’t be getting a place on the schedule, nor will the other...
2010-12-08
787 reads
I had posted a while back on the process of book writing. It was an attempt to educate while scaring...
2010-12-08
695 reads
She can dig it!
D Sharon PruittIn this new series of posts, I plan to investigate the SQL Server plan...
2010-12-08
837 reads
CHRISTMAS AT THE MUSICALS
Originally posted on Senghenydd Cricket Club website.
Join The Romilly Singers as they entertain you through a...
2010-12-08
557 reads
A repost from SQLServerCentral.
What would you like for Christmas?
Hint, hint, a little visual imagery of the kind of prize that...
2010-12-08
910 reads
“Next 24 Hours of PASS on March 15-16 2011, celebrating Women’s History Month with 24 female speakers!”
Thus goes the announcement on...
2010-12-07
814 reads
I’ve been pretty quite since the PASS Summit and with good reason. Every year we have a chapter leader meeting....
2010-12-07
876 reads
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...
My mugI grew up surrounded by coffee farms in Guatemala and somehow spent most...
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