New ASAP Utilities 5.1 just released! #excel
The new and improved version of ASAP Utilities has just been released! Based on the feedback we received, we’ve added...
2014-02-13
231 reads
The new and improved version of ASAP Utilities has just been released! Based on the feedback we received, we’ve added...
2014-02-13
231 reads
As a self-taught developer, I’ve never really given any credence to certifications. Certifications in the development arena seem like a way...
2014-02-13
570 reads
Join Us at #NoSQLNow
The third annual NoSQL Now! Conference is the largest vendor-neutral forum focused on NoSQL (Not Only SQL)...
2014-02-13
552 reads
The next location for my ‘Virtualization for SQL Server DBAs’ SQL Saturday preconference training session is Friday, March 28th, in...
2014-02-13
769 reads
This past weekend I made the journey to Cleveland, OH (Westlake, actually) for SQL Saturday #241. I’ve attended two local SQL Saturdays in the past (helping organize/run one), but seeing...
2014-02-13
6 reads
With more and more features being added to the SQL Server I started thinking that its friendship with MS Access...
2014-02-13
2,182 reads
Problem: You require the ability to perform a repeatable standardised installation of multiple instances of SQL Server or the ability...
2014-02-13
45,444 reads
Question : Can we do system configuration check with starting SQL Server installation? One of my friend need to submit it...
2014-02-13
3,372 reads
DBAs are the gatekeepers, but if we make it an unpleasant process then people will find a way around the...
2014-02-13
493 reads
Transactions are great tools that every DBA and developer should learn how to use. Unfortunately not everything can be put...
2014-02-13 (first published: 2014-02-05)
4,564 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