Can a Data Professional Be Organized?
“One of the advantages of being disorderly is that one is constantly making exciting discoveries.” While this quote is true...
2017-05-05 (first published: 2017-04-25)
1,425 reads
“One of the advantages of being disorderly is that one is constantly making exciting discoveries.” While this quote is true...
2017-05-05 (first published: 2017-04-25)
1,425 reads
I recently was on a call where a technical unit indicated they did not receive any form of documentation around...
2017-04-24 (first published: 2017-04-19)
1,319 reads
This month’s topic by Koen Verbeeck (B|T) is based around times that are a changing. To break it down somewhat...
2017-04-11
352 reads
Being a data professional you assume a certain amount of responsibility. It often requires having the right attitude and an...
2017-04-17 (first published: 2017-04-10)
1,399 reads
Often times we as leaders within our respective shops tend to waste our time focusing on the wrong things. Think...
2017-04-06
374 reads
If you’ve been involved in technology for any length of time you are aware of outside threats to your network...
2017-04-05
368 reads
Last night I saw a tweet from Matt Gordon (b|t); the topic caught my eye – “How I Became A…SQL Server...
2017-04-04
401 reads
I was recently approached and asked, “What is SQL Saturday? I actually get asked that question more times than not...
2017-04-03
389 reads
This post is for all you up and coming data professionals out there. Over the course of the last week...
2017-03-21
487 reads
Hello much younger Yates. Hope you’ve been doing well. Why don’t you pull up a chair and stay for a...
2017-01-31
687 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...
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,...
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