MCM: To pass, or not to pass
I’ve been counting down the days until I get the score from my second attempt at the SQL Server MCM...
2011-04-19
510 reads
I’ve been counting down the days until I get the score from my second attempt at the SQL Server MCM...
2011-04-19
510 reads
Day 19 Sql Server with .Net Using .Net programming is we can connect to sql server, its similar with any...
2011-04-19
552 reads
Often when building dimensions there is a need to order you dimension attributes by something other than the NameColumn or...
2011-04-19
4,150 reads
This is the last part of my confession series since this is showing me only in negative light. I wish...
2011-04-19
1,264 reads
Since going back to being a senior DBA, I've not stayed on top of the latest tools like I did...
2011-04-19
2,080 reads
There are many different paths you can travel on the journey to success. There is no precise route that everyone...
2011-04-18
1,430 reads
Microsoft has released SQL Server 2008 R2 RTM Cumulative Update 7, which is Build 10.50.1777. 0. I count 33 fixes...
2011-04-18
806 reads
For Day 18 of the series, we will talk about AMD Turbo CORE technology. AMD Turbo CORE is a technology...
2011-04-18
536 reads
If you're on twitter, follow the #SQLPass hash tag and @briankmcdonald for up-to-date information.
You may have heard that PASS is...
2011-04-18
349 reads
There's just a few more weeks to go until the inaugural PASS SQLRally (May 11-13) in Orlando and there are...
2011-04-18
1,148 reads
By Brian Kelley
Fabiano Amorim has written an excellent article at Simple Talk on securing msdb. Here's...
By Steve Jones
This month we have a new host, which I am grateful for. So many...
I needed to do some research because there is more to #temp tables than...
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
Comments posted to this topic are about the item The Range of Customers
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