MCITP 1 Down 3 To Go
Yesterday I posted a quick blurb about my certification plans this year. Well, ok not full blown plans , but you get the gist. I announced that I would...
2011-05-20
11 reads
Yesterday I posted a quick blurb about my certification plans this year. Well, ok not full blown plans , but you get the gist. I announced that I would...
2011-05-20
11 reads
Yesterday I posted a quick blurb about my certification plans this year. Well, ok not full blown plans , but you...
2011-05-20
713 reads
Last year (and this year too) I had set the goal to renew my certification. I failed miserably at it last year with the exception that I at least...
2011-05-19
3 reads
Last year (and this year too) I had set the goal to renew my certification. I failed miserably at it...
2011-05-19
516 reads
Come one, come all!! Oh wait, it’s too late now. I just finished giving my presentation to the DBA VC (virtual chapter). There was good attendance and there were...
2011-05-11
3 reads
Come one, come all!! Oh wait, it’s too late now. I just finished giving my presentation to the DBA VC...
2011-05-11
664 reads
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will be meeting on May 12, 2011 at the usual...
2011-05-10
7 reads
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will...
2011-05-10
525 reads
As a part of my careers goals, I am trying to remain involved in the community through various engagements and events. Recently, I was able to present to the...
2011-05-10
11 reads
As a part of my careers goals, I am trying to remain involved in the community through various engagements and...
2011-05-10
679 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