Secure Coding
I was looking recently for some sort of guideline that would help me ensure that code was securely written. I...
2014-05-07
840 reads
I was looking recently for some sort of guideline that would help me ensure that code was securely written. I...
2014-05-07
840 reads
2014-05-07
1,728 reads
I’ve been playing with Filetable and I was asked an interesting question. Can I move files to a folder programmatically?
It’s...
2014-05-06
1,826 reads
Do you have a vocation or career? Steve Jones talks a bit about the difference today.
2014-05-06
166 reads
This past week saw lots of security concerns, especially around data. Steve Jones has a few comments about the implications.
2014-05-05
105 reads
My employer, Red Gate Software, offers a sabbatical to their employees, and this year I’m taking mine. I’ll be gone from...
2014-05-02
1,046 reads
What would build if you had time? Anything fun or interesting? What's on your mind if you're a maker?
2014-05-02
136 reads
2014-05-02
1,853 reads
A good one, one of the better diagrams I’ve seen.
From http://markosrendell.wordpress.com/2014/03/03/practical-benefits-of-continuous-delivery/
Now if we can get tooling and processes to make...
2014-05-01
802 reads
2014-05-01
84 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