Who is the best person for the job?
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
125 reads
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
125 reads
Today we have a guest editorial from Ben Kubicek as Steve is away from the office. It is hard to be humble, but it is needs to learn something new.
2019-11-27 (first published: 2016-11-07)
483 reads
The point of this article is that only service accounts and/or specific network sql admin accounts should have sysadmin rights.
2019-03-11
1,592 reads
2019-01-07
144 reads
2018-11-15
714 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
169 reads
It is important to train new people, so what is the best way to go about doing it?
2018-09-06
385 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
88 reads
In many ways job titles matter, just not when telling a stranger what you do for work.
2018-07-30
582 reads
Normalization is important for relational databases, but sometimes too much of a good thing can be bad.
2018-07-23
2,532 reads
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
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...
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