A Letter To A Younger Yates
Hello much younger Yates. Hope you’ve been doing well. Why don’t you pull up a chair and stay for a...
2017-01-31
687 reads
Hello much younger Yates. Hope you’ve been doing well. Why don’t you pull up a chair and stay for a...
2017-01-31
687 reads
The word leadership has many synonyms attributed to it. Something that can be learned early on in one’s career is that...
2017-01-24
729 reads
Someone once told me at the shop that we have plenty of software utilities laying around that could be very...
2017-01-18
522 reads
Have you ever heard the phrase “Hold The Fort”? Long ago in battle supply routes were targeted by enemy regiments...
2017-01-12 (first published: 2017-01-05)
1,303 reads
When this blog started back in 2011 I had no idea that it would continue to grow to where it...
2016-12-29
680 reads
Change is not always easy. In fact, change is hard.
“Change” is a word from which some people shy away, and...
2016-12-20
340 reads
This year is different. Why? I’m not sure yet. There is a lot of reflection going on since my return...
2016-11-11 (first published: 2016-11-02)
1,232 reads
Good morning from PASS Summit in Seattle, Washington. Like yesterday I will be live blogging the event. The same format...
2016-10-27
530 reads
Grant Fritchey taking the stage to talk about the financial health of PASS.
250k members , 170 countries, and 87% global representation...
2016-10-27
562 reads
Dr. David DeWitt is getting ready to take the stage to a huge ovation and is thrilled to be back...
2016-10-27
586 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