Still time to get a SQL Server tattoo
Not for me, and perhaps not for you, but you can still encourage Jason Strate, Gareth Swanepoel, Ed Watson, and...
2014-09-24
858 reads
Not for me, and perhaps not for you, but you can still encourage Jason Strate, Gareth Swanepoel, Ed Watson, and...
2014-09-24
858 reads
We had a disaster at SQLServerCentral this past weekend. It wasn’t a big disaster, but it was an event that...
2014-09-23
724 reads
The Apple fall keynote recently didn't work as planned, and it seems as though their systems weren't tested well enough.
2014-09-23
215 reads
A DBA should be working to automate their tasks, and find time to do things that are really important. Like keeping their coffee cup topped off 🙂
2014-09-22
299 reads
Grant Fritchey is running for the PASS board. He’s not running for President, though I’m not sure why he shouldn’t...
2014-09-22
774 reads
Andy wrote a post today called The End of the Mentoring Experiment, which is something we’ve talked about for some...
2014-09-22
726 reads
IBM has released a free version of its Watson service to help people perform analytics on their data.
2014-09-22
115 reads
I spent a few days at DevConnections this week and really enjoyed the conference. The location was Aria in Las...
2014-09-19
772 reads
Steve Jones wants to know if you have compelling reasons to upgrade or not upgrade this week.
2014-09-19
127 reads
Steve Jones talks about one of the least favorite things for IT people: documentation. How much do you really need to do?
2014-09-17 (first published: 2009-01-05)
533 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