Common SQL Server Mistakes – Equals NULL
One thing that I don’t see a lot, but it still happens with people new to SQL Server is the...
2010-10-13
21,792 reads
One thing that I don’t see a lot, but it still happens with people new to SQL Server is the...
2010-10-13
21,792 reads
Did malware cause a plane crash? Not likely, but Steve Jones warns us it could and we need to be very security conscious when we have computers linked together in transportation systems.
2010-10-13
124 reads
I’m not sure Google is a better company than Microsoft or some of the other extremely large companies that get...
2010-10-12
818 reads
It’s time for T-SQL Tuesday again, and I’m happy to participate again. This is a monthly blog party started by...
2010-10-12
1,261 reads
2010-10-11
118 reads
How does someone handle downtime in a small business? Steve Jones has some thoughts today based on a question sent in recently.
2010-10-11
175 reads
Let’s be clear: I don’t recommend the use of xp_cmdshell as a general tool. It ought to be used when...
2010-10-11
17,400 reads
I picked up Career Warfare on the recommendation of a friend that had seen the Modern Resume presentation. I grabbed...
2010-10-08
672 reads
Today Steve Jones wraps up this week of editorial topics looking at women's issues with his own views on men and women in the workplace.
2010-10-08
177 reads
Another weekend, another new city, another SQL Saturday. This was my first trip to Kansas City, and it was a...
2010-10-08
1,401 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