Microsoft Certified Master in SQL Server 2008 Knowledge Exam
I woke up bright and early this morning to take the beta version of the Microsoft Certified Master in SQL...
2011-01-08
981 reads
I woke up bright and early this morning to take the beta version of the Microsoft Certified Master in SQL...
2011-01-08
981 reads
I decided that I really like the WordPress platform, and more importantly, that I need to consolidate all the work...
2011-01-08
816 reads
I was browsing a public web site from a large company today, when I saw the error page shown below. ...
2011-01-08
681 reads
If you are up in Edmonton around January 26th, you can hear my voice at the EDMPASS January user group...
2011-01-07
433 reads
31 Days of SSIS
Welcome to day seventh day of the 31 Days of SSIS. If you are just joining the...
2011-01-07
555 reads
Happy moments in 2010
Hi all wish you a happy new year.
I know it’s a late post anyway I am going...
2011-01-07
1,431 reads
I toyed with the idea of using the SSD for my main drive, but I’d really like to get the...
2011-01-07
1,062 reads
I’m trying to plan out this week better, and come at the RTFM readings with a sense of direction an...
2011-01-07
469 reads
One of the gifts my Mom gave my children was a ‘Painting Rocks’ kit. Great marketing, six medium sized rocks,...
2011-01-07
556 reads
Of-late one of our SSRS 2005 report subscriptions started to fail regularly with the error message
Failure sending mail: Timeout expired....
2011-01-07
3,043 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