T-SQL Tuesday #46–The Rube Goldberg Machine
It’s T-SQL Tuesday time again. This is the monthly blog party where we all write on a topic. This month...
2013-09-10
1,015 reads
It’s T-SQL Tuesday time again. This is the monthly blog party where we all write on a topic. This month...
2013-09-10
1,015 reads
Part 2 of a set of thoughts from Steve Jones on certification in technology areas.
2013-09-10
384 reads
With the discontinuing of the MCM And MCA programs, Steve Jones has a few thoughts. This is the first of a three part series on certifications.
2013-09-09
245 reads
The news about NSA spying keeps coming out, and apparently includes corporate communications as well.
2013-09-09
293 reads
I like most of the SQL Server people I meet. Most of you are polite, cheerful, friendly, and it’s nice...
2013-09-06
859 reads
As we ask developers to deliver software quicker, are we helping improve the quality of software? Steve Jones asks the question today.
2013-09-06
238 reads
Are there good and bad interview questions? Are there some you prefer or hate? Steve Jones comments on some of the strange ones out there and how hiring is changing.
2013-09-05
439 reads
2013-09-05
1,854 reads
If you’ve enabled TDE, you need to be sure you have a copy of the certificate that protects the Database...
2013-09-03 (first published: 2013-08-26)
1,864 reads
The availability of cheap sensors brings with it lots of possibilities and concerns. However there is one certainty: more data.
2013-09-03
140 reads
By James Serra
Once again there were a number of Microsoft Build announcements related to data and...
A good week ago I hosted the monthly T-SQL Tuesday blog party. I invited...
By Steve Jones
I was messing around with SQLCMD and I realized something I hadn’t known. I’ve...
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