The 2013 Tribal Awards
The inaugural 2013 Tribal Awards kick off today and Steve Jones has a few thoughts.
2013-12-09
120 reads
The inaugural 2013 Tribal Awards kick off today and Steve Jones has a few thoughts.
2013-12-09
120 reads
2013-12-09
2,368 reads
2013-12-06
1,926 reads
Would you rather work with people, or compete with them? Steve Jones has comments on the Microsoft Stack Ranking system that seems to encourage the latter.
2013-12-04
163 reads
Actually, Maryland, but close enough. I’ll be in Chevy Chase this weekend, first for our SQL in the City Seminar...
2013-12-03
694 reads
An RDBMS is a good fit for many database problems, perhaps as Steve Jones thinks, the best fit for most. However NoSQL systems have a place, we're just not sure where.
2013-12-02
233 reads
2013-11-29
2,172 reads
2013-11-28
103 reads
2013-11-28
2,428 reads
This Friday Steve Jones has a poll about developers. Help compile a good list of common mistakes made in SQL Server.
2013-11-26 (first published: 2009-05-08)
508 reads
By Steve Jones
I was messing around with SQLCMD and I realized something I hadn’t known. I’ve...
By gbargsley
One of the first things I review when I inherit a new SQL Server...
By Arun Sirpal
It’s 07:43. Someone’s already left a message. “Something’s wrong with the DB server.” You...
I have an issue where I have a Bill of Material list of items...
Comments posted to this topic are about the item Follow Your Hunch
Comments posted to this topic are about the item What Happens When You Ask...
I have a SQL Server 2022 English default installation on a server. I want to detect if there are any upper case characters in rows and I have this code:
SELECT CustomerNameID,
CustomerName
FROM dbo.CustomerName
WHERE CustomerName = LOWER(CustomerName)
Here is the sample data I am testing with:
CustomerNameID CustomerName 1 John Smith 2 Sarah Johnson 3 MICHAEL WILLIAMS 4 JENNIFER BROWN 5 david jones 6 emily davis 7 Robert Miller 8 LISA WILSON 9 christopher moore 10 Amanda TaylorHow many rows are returned? See possible answers