Reducing the Frequency of SQL Server Central Newsletters
We are reducing the sending of the SQL Server Central newsletter to three days a week.
2021-04-30 (first published: 2021-04-26)
1,186 reads
We are reducing the sending of the SQL Server Central newsletter to three days a week.
2021-04-30 (first published: 2021-04-26)
1,186 reads
A simple question, and you can vote by leaving a comment for this article. Do you still want me to include the coping tips in the newsletter after June? When the pandemic shut down much of the world in March, our CEO at Redgate Software asked us to think about what we could do to […]
2020-06-16
682 reads
With the implementation of the BBPress forums at SQLServerCentral, a few community members have asked how the forums work and how to best use them. This document will address a few of the items that have been asked by users. A list of questions is followed by the answers below. If you have additional questions […]
2020-05-15
267 reads
A new feature on SQLServerCentral to allow you more control over who can contact you.
2019-12-30
220 reads
The next version of SQLServerCentral will go love on Saturday, March 30, 2019
2019-03-29
318 reads
SQLServerCentral is looking for articles on a few topics. Read more to find out how to submit a draft.
2016-08-19 (first published: 2016-08-12)
930 reads
2015-11-09
118 reads
After examining the SQLServerCentral servers using the sp_Blitz™ script, Steve Jones now looks at how we will use the script moving forward.
2015-04-30
6,981 reads
Steve Jones runs the SQL Cop tests against the SQLServerCentral database and looks at the results.
2015-03-23
5,464 reads
Our Question of the day is very popular, but we're looking for more complex questions
2014-09-08
657 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