The PASS SQL Rally Logo - I Won!
Well not me. It wasn’t my design, but when I went through the entries, this was the one that caught...
2010-08-10
927 reads
Well not me. It wasn’t my design, but when I went through the entries, this was the one that caught...
2010-08-10
927 reads
“Building an easy-to-use tool does not make an amateur more skilled at making applications and more than a $900 table...
2010-08-10
787 reads
I almost forgot about T-SQL Tuesday this time, so I’m scrambling to get an entry done today.
This is a...
2010-08-10
837 reads
Someone posted a note asking how they might restore if the disk that contained their transaction log crashed. I replied...
2010-08-09
412 reads
Did your company lose data last year? It can be hard to know, especially when even laws designed to ensure breaches are reported have loopholes. Steve Jones thinks this is a bad idea.
2010-08-09
84 reads
A friend of my wife’s posted a note asking what people thought of the various devices and which one would...
2010-08-06
1,197 reads
I saw a post earlier this week from Buck Woody called Don’t Mess with the System Databases and I agree....
2010-08-06
354 reads
I completed my interview for the PASS board election today. I don’t want to talk about what was in the...
2010-08-06
407 reads
I noticed the scores for the first part of the PASS nomination process were posted recently. These were the aggregate...
2010-08-05
417 reads
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
430 reads
A good week ago I hosted the monthly T-SQL Tuesday blog party. I invited...
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...
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