PASS Update #5 (Blogger's Please Read)
We'll be announcing this on the main www.sqlpass.org site and the PASS blog over the next day or two, but...
2009-02-10
1,219 reads
We'll be announcing this on the main www.sqlpass.org site and the PASS blog over the next day or two, but...
2009-02-10
1,219 reads
A mildly humorous title, spawned by a link my friend Jon sent me about calculating Pi using a batch file....
2009-02-10
785 reads
This was the brainchild of Mike Walsh, who asked, "What do you wish you knew when you were starting?" I...
2009-02-10
1,279 reads
I’m a little frantic this morning trying to get caught up on work, lots of stuff piled up, Tia leaving,...
2009-02-09
787 reads
As I mentioned last week I drove to Miramar for the South Florida Code Camp, arriving in time for the...
2009-02-09
524 reads
This is something that bit us over the weekend as we attempted to install two new SQL Server 2008 Enterprise...
2009-02-09
1,802 reads
Forwarding on a note from my local MS Developer Evangelist Joe Healy about his next series of free presentations coming...
2009-02-08
778 reads
Last week I posted Speaking at Community Events - Time to Raise the Bar?, a first cut at talking about to...
2009-02-08
1,272 reads
Over the years, I have dealt with a lot of third-party applications (and their vendors) that use SQL Server as...
2009-02-06
2,842 reads
Microsoft has published a white paper called SQL Server 2008 White Paper: Analysis Services Performance Guide that you might find...
2009-02-06
903 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