2014-01-01
2,032 reads
2014-01-01
2,032 reads
Steve Jones looks back at 2013, starting with his predictions on Jan 1 and looking at how data and SQL Server impacted our community.
2013-12-31
113 reads
I announced in the Christmas editorial that I was discontinuing the video podcasts. Needless to say I heard a complaint...
2013-12-31
1,413 reads
2013-12-31
2,307 reads
Google is trying to figure out who might quit the company, using their own custom application. Steve Jones thinks this is a great idea and wishes more companies would do it.
2013-12-30 (first published: 2009-06-10)
548 reads
This week Steve Jones looks at a few tools that can help your productivity and links to a few more.
2013-12-30
374 reads
It's the last Friday of 2013 and Steve Jones asks you to look back at the year. What stands out in your mind that relates to SQL Server.
2013-12-27
117 reads
I’ve written a bit about phones recently as I’ve experienced the switch back to iOS from Android. There are a...
2013-12-27
856 reads
2013-12-27
1,550 reads
Steve Jones doesn't think that it matters which platform you choose. It's more about the people you have.
2013-12-26
156 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