2019-02-19
695 reads
2019-02-19
695 reads
If you’ve had struggles with database development and had a real world disaster, you could win in a new Redgate...
2019-02-18
166 reads
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
62 reads
2019-02-18
862 reads
2019-02-15
80 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-02-15
1,373 reads
2019-02-15
583 reads
It’s a week to my webinar with Donovan Brown (bt, yg), leader of the League of Extraordinary Cloud DevOps Advocates,...
2019-02-14
229 reads
2019-02-14
71 reads
2019-02-14
780 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