Last Weeks Top “Reading” Links #45
It’s Monday, it’s time for weekly round-up #45. Technically, this should be #46, but since I went on vacation, I...
2013-08-19
695 reads
It’s Monday, it’s time for weekly round-up #45. Technically, this should be #46, but since I went on vacation, I...
2013-08-19
695 reads
This reblog post should have come out last Friday, but I was on vacation and I didn’t want any new...
2013-08-18
460 reads
I’ve always been a fan of the feeling when I find an old blog post that’s got just the information...
2013-08-09
885 reads
I can’t believe it’s already August. I had planned to get to the lake more this year, spend more time...
2013-08-05
586 reads
It’s Monday, it’s time for weekly round-up #44. As an introduction, if you follow me on twitter (@StrateSQL), you’ll know that throughout the...
2013-08-05
1,004 reads
I’ve always been a fan of the feeling when I find an old blog post that’s got just the information...
2013-08-02
771 reads
Weekly round-up of the links that I tweet out number 43. As an introduction, if you follow me on twitter (@StrateSQL), you’ll know...
2013-07-29
1,220 reads
As I mentioned in the introductory post, during the Introduction to SQL Server Security session for Pragmatic Work’sTraining on the T’s, I...
2013-07-27
717 reads
If you are looking for a presentation that brings together bacon, unicorns, and lightsabers, then you should have seen my...
2013-07-26
929 reads
I’ve always been a fan of the feeling when I find an old blog post that’s got just the information...
2013-07-26
911 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...
Tlp/Wa_Cs:0817-866-887. Menara BCA, Grand Indonesia, Jl. M.H. Thamrin No.1, RT.1/RW.5, Menteng, Kec. Menteng, Kota...
WhatsApp:0818-751-777 Gedung Gajah Tebet, Jl. Dr. Saharjo No.Raya 111 Unit N & O, RT.1/RW.1,...
When things go wrong - like trouble signing in, videos pausing, unclear charges, or...
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