PASS Summit 2013 Report #9
PowerBi contest – www.facebook.com/microsoftbi. Aligns with the BA conference next year.
I’m amused thinking about PowerBi being Powered By Microsoft.
I still...
2013-10-16
603 reads
PowerBi contest – www.facebook.com/microsoftbi. Aligns with the BA conference next year.
I’m amused thinking about PowerBi being Powered By Microsoft.
I still...
2013-10-16
603 reads
Weather a bit cloudy today, a little rain and a little cool – not Seattle, but not Orlando either! Breakfast at...
2013-10-15
454 reads
Started today with breakfast with the family after packing up all their clothes and stuffed animals for the trip home....
2013-10-15
423 reads
One of the items that came up for discussion at the Chapter meeting today was the privacy policy for SQLSaturday....
2013-10-15
302 reads
Tonight for the fourth year Steve Jones and I are hosting an informal networking dinner. We’ll be at Buffalo Wild...
2013-10-14
379 reads
Yesterday we drove up from Charleston where I had attended SQLSaturday #227. It’s not a bad drive, about three hours....
2013-10-14
313 reads
Protecting our physical systems usually involves some type of security at the office. For many of this, we have some type of key card system. Andy Warren asks today how you handle things and does it work well.
2013-10-14
151 reads
My first time in Charleston! Quick notes:
Made the drive with the family in 7 hours, not bad, and easily the...
2013-10-13
558 reads
Last Tuesday I received the email confirming that I will be an MVP for another year. Nice news to get....
2013-10-07
351 reads
Today I’ll continue with my notes and thoughts on the 2013 election process and a good place to start is...
2013-10-06
718 reads
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...
By gbargsley
One of the first things I review when I inherit a new SQL Server...
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