Consolidation
I’m about to go down one laptop, which is good. I have had too many for some time. Right now...
2010-12-06
398 reads
I’m about to go down one laptop, which is good. I have had too many for some time. Right now...
2010-12-06
398 reads
I had my laptop connected to a projector recently, and for some reason a few windows got moved off screen,...
2010-12-06
565 reads
We are always looking for more speed from our computer systems, but are they getting faster? Steve Jones has a few comments on why this might not be the case.
2010-12-06
167 reads
Today Steve Jones has a poll that asks about your work environment, and specifically what type of noise works best for you.
2010-12-03
199 reads
I saw this on Facebook, and while I’m not sure of the list, I reproduced it here. I think that...
2010-12-03
541 reads
I saw a very interesting blog at 37 Signals on the quote “the things you do more often are the...
2010-12-03
547 reads
I saw this posted on Twitter, yet another reason to have a variety of people you follow. Some very interesting...
2010-12-02
559 reads
Do we need new technologies to handle the large scales of complex data analysis? Steve Jones thinks SQL Server can handle the load.
2010-12-02
113 reads
Today Steve Jones talks about the reasons why you might change jobs, and the fact that you aren't alone. However be careful about changing jobs, and make an attempt to stay if you can.
2010-12-01
278 reads
I updated the iPad tonight to iOS 4.2. I had no particular reason to upgrade, but I saw a few...
2010-12-01
536 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