Security Panics
I went to host the Red Gate SQL Source Control webinar recently and had a snag. I downloaded the GoToWebinar...
2010-08-23
846 reads
I went to host the Red Gate SQL Source Control webinar recently and had a snag. I downloaded the GoToWebinar...
2010-08-23
846 reads
This Friday Steve Jones talks about your career, and training, and what you are doing about it.
2010-08-20
306 reads
Are there some things that are beyond automation in your company? Steve Jones comments on the difficulty of changing things with automation in some cases.
2010-08-19
283 reads
At SQL Saturday #28, I was surprised to be given the speaker evaluations after my first session. One of the...
2010-08-19
724 reads
I saw a short talk from Dan Pink a few months back from this year’s TED conference. It’s very cool,...
2010-08-18
1,059 reads
I read Stuart
Ainsworth’s blog post this morning, and I thank Stuart for posting
something. However, there’s an implication in...
2010-08-18
1,721 reads
Well I have to say I’m surprised. It’s always hard to get a rejection, and I’m not quite sure what...
2010-08-18
3,244 reads
Terry Childs gets sentenced for refusing to turn over passwords to his boss. Steve Jones reminds us that we work for someone and that we have to remember that when taking a stand.
2010-08-18
308 reads
A presentation by Steve Jones that talks about the technical basics of what SQL Server is and how it works with some hints about backups, security, and more.
2010-08-17
291 reads
How can you better keep employees engaged in your company? Keep them happy and hopefully retain them for a long time? Steve Jones has some comments today.
2010-08-17
164 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