Start Building Your Next Network
Take a look at your network right now and while it probably has some diversity, I bet it’s tied pretty...
2012-03-30 (first published: 2012-03-25)
1,555 reads
Take a look at your network right now and while it probably has some diversity, I bet it’s tied pretty...
2012-03-30 (first published: 2012-03-25)
1,555 reads
A few weeks ago I started clearing space for a small garden. Tedious work due to the area of the...
2012-03-16
921 reads
Something fun for Friday, this was a gift from the client I work with to lighten things up and do...
2012-03-16
890 reads
One of the things I hear a lot relating to work big and small is that it is “almost done”,...
2012-03-12
578 reads
Here’s a story from a recent meeting. We were discussing some problems and the team was talking through some options...
2012-03-12
794 reads
I was back at MagicPASS last week to do a presentation, my first time with the group at the new...
2012-03-06
563 reads
Yesterday I blogged about hosting a daily status meetings and some of the tricks I use to make it work....
2012-02-27
648 reads
For the past six months or so I’ve hosted a daily status meeting for a large project. It started out...
2012-03-02 (first published: 2012-02-26)
2,011 reads
I was chatting with a friend recently who had been in turn chatting with a colleague about first impressions. The...
2012-02-21
970 reads
I was excited to receive the email on Friday that I’d been selected to present at SQLRally #2 in Dallas...
2012-02-20
604 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