Practice Your PASS Session on the SQL Lunch
We at the SQL Lunch would like to extend an invitation to all of the PASS speakers. If you are...
2010-07-18
401 reads
We at the SQL Lunch would like to extend an invitation to all of the PASS speakers. If you are...
2010-07-18
401 reads
If you’re planning on rolling out Report Builder to end users, you may want to download the stand alone installation...
2010-07-18
583 reads
Recently, I have been given the opportunity to work with a company who wanted to explore the capabilities of Report...
2010-07-18
367 reads
T-SQL Tuesday #008: Gettin' Schooled
Welcome to another exciting episode of T-SQL Tuesday. I’m Robert L Davis (blog|@SQLSoldier), and I’m...
2010-07-18
2,423 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking to improve it. Status quo is not for me. I decided to take on the 'queue' part...
2010-07-17
8 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking to improve it. Status quo is not for...
2010-07-17
697 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking
to improve it. Status quo is not for me. I decided to take on the 'queue'
part...
2010-07-17
26 reads
Fellow SQL Server MVP Arnie Rowland (blog | twitter) has done a great job organizing an interesting effort to help unemployed...
2010-07-17
591 reads
Red Gate Software has recently opened up its SQL Response v2 Early Release Program (EAP), and is inviting anyone who...
2010-07-17
962 reads
Advanced Troubleshooting Week at SQL University, Lesson 2
Welcome back to Advanced Troubleshooting Week at SQL University. I’m your guest professor...
2010-07-16
1,999 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