T-SQL Tuesday #54–Interviews and Hiring
It’s the May T-SQL Tuesday, and this time it’s a great one. This month the host is Boris Hristov (@BorisHristov)...
2014-05-13
1,147 reads
It’s the May T-SQL Tuesday, and this time it’s a great one. This month the host is Boris Hristov (@BorisHristov)...
2014-05-13
1,147 reads
2014-05-13
1,560 reads
A short piece that gives you the basics of how to administer the database master keys that form the basis for encryption inside of your databases.
2014-05-12
13,052 reads
Steve Jones asks for more of the local people to help teach, train, and grow the community.
2014-05-12
105 reads
In previous posts I showed how to create a folder in a Filetable and also how to the create (and...
2014-05-12
1,090 reads
Backups are important in most companies and today Steve Jones asks who has the responsibility in yours.
2014-05-09
195 reads
One of the things that’s annoyed me in the last few versions is that Books Online isn’t smoothly installed for...
2014-05-08
890 reads
Steve Jones doesn't think that companies can just do away with a DBA. Apparently there are people on the NoSQL platform that agree.
2014-05-08
261 reads
I saw a talk from Joe Sack (b | t) on the cardinality estimator (CE) in SQL Server 2014 and found...
2014-05-08 (first published: 2014-04-30)
3,525 reads
Steve Jones thinks that the attitudes of managers need to change if we want to be more productive in the future.
2014-05-07
181 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