PASS Day –1 (Monday) at PASS Summit 2009
Started the day with a long walk, then off to Top Pot doughnuts for coffee with Don Gabor, Jack Corbett,...
2009-11-03
378 reads
Started the day with a long walk, then off to Top Pot doughnuts for coffee with Don Gabor, Jack Corbett,...
2009-11-03
378 reads
Flew out of Orlando direct to Seattle, leaving at 8:30 and arriving about 1130 am Seattle time. Nice flight, no...
2009-11-02
359 reads
Posted yesterday at http://www.sqlpass.org/Community/PASSBlog/articleType/ArticleView/articleId/118.aspx, Rushabh Mehta is the incoming President, Bill Graziano is the VP Finance, and Rick Heiges is...
2009-10-31
1,424 reads
I’m flying out Sunday via Alaska Air, taking the direct flight from Orlando to Seattle, arriving at 11:40 am. If...
2009-10-30
1,200 reads
If you’re going to spend 3-5 days in Seattle at the PASS Summit it’s worth sampling the local food rather...
2009-10-29
1,749 reads
I’ve been reading Aaron’s blog for a while, he’s prolific and consistently interesting – and definitely a technical focus. He’s been...
2009-10-29
680 reads
Was browsing on a break and found this, http://www.seattle.com/dining/. Of them I’ve been to Palomino (good) and Ruths Chris (good),...
2009-10-29
752 reads
Ran across this, http://daypasswireless.com/, lets you rent an aircard plus service. Don’t know if it’s too late for those of...
2009-10-29
641 reads
I know, I should have put more in the title. Crazy Egg is a web page traffic analysis tool that...
2009-10-28
565 reads
I’m flying out Sunday via Alaska Air, taking the direct flight from Orlando to Seattle, arriving at 11:40 am. If...
2009-10-27
1,210 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