Is Your Internet Activity Hurting Your DBA Career?
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,077 reads
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,077 reads
With the world economy on the downside, there is at least one bright light, and that is DBAs are still...
2008-12-09
1,105 reads
SQL Server 2008 (Enterprise Edition) offers row and page compression, which can potentially offer a boost in disk I/O in...
2008-12-08
1,506 reads
I will be attending the PASS Community Summit in Seattle, November 18-21, and will be making two presentations:
DBA 101: Best...
2008-11-10
401 reads
As most of you know, PASS (the Professional Association for SQL Server) is an independent, not-for-profit association, dedicated to supporting,...
2008-11-10
564 reads
SQL Server Magazine Connections, which is part of the larger DevConnections conference, will be held November 10-13 in Las Vegas,...
2008-11-07
542 reads
Compared to many other IT professionals, DBAs, on average, make more money. To find out, let's check and find out.
According...
2008-11-07
3,039 reads
I feel that, ultimately, an Exception DBA is defined by his or her actions, so place yourself in the shoes...
2008-11-07
489 reads
DevTeach is offering 136 sessions, including 36 on SQL Server, 17 on Agile Development, 17 on Software Architecture, and 57...
2008-11-05
390 reads
Microsoft has launched a new SQL Server 2008 marketing-related website at www.sqlserverenergy.com. It is available in 11 languages, and offers...
2008-11-03
849 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