December 2010 S3OLV Meeting
It is amazing how the months just seem to fly by these days. I probably say that every month. It...
2010-12-01
546 reads
It is amazing how the months just seem to fly by these days. I probably say that every month. It...
2010-12-01
546 reads
Defensive Db Programming Chapter 10 After dragging this review on for months now, it is finally time to bring this bad boy home and wrap it up. I have...
2010-11-29
7 reads
Defensive Db Programming Chapter 10
After dragging this review on for months now, it is finally time to bring this bad...
2010-11-29
1,383 reads
I came across a blog post today from Jason Strate (Blog | Twitter) about giving thanks. This topic has come about due to the holiday in the United States...
2010-11-23
8 reads
I came across a blog post today from Jason Strate (Blog | Twitter) about giving thanks. This topic has come about...
2010-11-23
868 reads
It is down to the final two chapters of the book by Alex Kuznetsova. Check out the previous chapter here. The review of this book is certainly taking longer...
2010-11-22
4 reads
It is down to the final two chapters of the book by Alex Kuznetsova. Check out the previous chapter here....
2010-11-22
965 reads
We are slowly getting to the end of this book by Alex Kuznetsov (Blog). You can find more on this series by looking here. We are now discussing chapter 8...
2010-11-11
4 reads
We are slowly getting to the end of this book by Alex Kuznetsov (Blog). You can find more on this...
2010-11-11
549 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago at this point). That election was the SQLServerpedia Awards....
2010-11-10
4 reads
By James Serra
Once again there were a number of Microsoft Build announcements related to data and...
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...
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