Better Technical Interviews
Technical interviews don't work great, but are they dead? Is there a better way? Steve Jones comments today.
2013-06-27
356 reads
Technical interviews don't work great, but are they dead? Is there a better way? Steve Jones comments today.
2013-06-27
356 reads
The sixth article in our series that looks at the results of the sp_Blitz™ script run against the SQLServerCentral servers.
2013-06-27
4,674 reads
Building great culture in a company is hard, and it takes work. Building great engineering culture can be more challenging, given the strong ideas and opinions people have in technology. Steve Jones has a few thoughts today.
2013-06-26
152 reads
The state of data security is getting better in the US, according to the 2013 survey from Symmatec. However we still have issues.
2013-06-25
121 reads
“The hashing alone being MD5 tells me that they really don’t care about their passwords too much, so it’s probably...
2013-06-24
930 reads
Where is the dividing line between work time and personal time? As more and more employees get new phones, such as the Blackberry and iPhone, is the line becoming too blurred? Are there legal implications?
2013-06-24 (first published: 2008-09-09)
304 reads
What do you do when work is too frustrating. Steve Jones talks about finding a way to release stress and frustration.
2013-06-21 (first published: 2008-08-14)
210 reads
It seems a tremendous amount of data is lost every year on laptops in airports. Steve Jones talks about some of the issues with physical security and your portable computers.
2013-06-20 (first published: 2008-09-03)
186 reads
SQL Server is a great platform, but there are problems in places. Steve Jones thinks that fixing some issues might be a good investment for Microsoft.
2013-06-19
203 reads
Today was a rehearsal day. Actually the last 2-3 days of work have been split between rehearsing talks that I’m...
2013-06-18
837 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