Besides Being a DBA, Do You Also Happen to be an Exchange Administrator?
I know a lot of DBAs fall into the category of part-time DBAs, because they work in small IT shops...
2010-04-23
552 reads
I know a lot of DBAs fall into the category of part-time DBAs, because they work in small IT shops...
2010-04-23
552 reads
In a recent poll at www.bradmcgehee.com, I asked website visitors if they had any Microsoft SQL Server certifications, and if...
2010-04-23
1,197 reads
This is an excerpt from my free eBook, Brad’s Sure Guide to SQL Server 2008, which can be downloaded here.
As...
2010-04-22
2,124 reads
As most of you know, the Icelandic volcano has played havoc with travel plans for speakers coming from the US...
2010-04-19
871 reads
As most of you know, the Icelandic volcano has played havoc with travel plans for speakers coming from the US...
2010-04-19
463 reads
AlantaMDF SQL Server Users Group. Photo courtesy of www.sqlvariant.com.
I have just finished up a three event speaking tour that, which...
2010-04-18
648 reads
In March, I ran a Question of the Month that asked, “What is the biggest mistake/problem you ever found on...
2010-04-14
2,819 reads
Just as a reminder, if you have registered to attend SQLBits this Friday, April 16, at the Church House Conference...
2010-04-14
432 reads
With the launch of SQL Server 2008 R2 almost upon us, DBAs need to start planning in some time to see what it has to offer. Brad McGehee reviews some of the available resources.
2010-04-12
525 reads
David Walker, the organizer of the popular Tulsa TechFest, is organizing the first annual NWA TechFest, to be held Thursday,...
2010-04-11
595 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...
Hub Via Wa:628217555651 Alamat Jl. Ciledug No.162, Kota Kulon, Kec. Garut Kota, Kabupaten Garut,...
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
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