PASS Summit 2016 – Live Keynote
Good morning from PASS Summit 2016!
Today will be the first keynote session at 8:15 a.m. with Joseph Sirosh. I’ve found...
2016-10-26
444 reads
Good morning from PASS Summit 2016!
Today will be the first keynote session at 8:15 a.m. with Joseph Sirosh. I’ve found...
2016-10-26
444 reads
Joseph Sirosh taking the stage by first telling us a story with over 400 million children in India. Only 50%...
2016-10-26
554 reads
Justin Silver, Scientist Pros, takes the stage……
Taking data science out of the lab settings and placing it into real world...
2016-10-26
471 reads
Document DB: Blazing fast planet-scale NoSQL:
Guaranteed Low LatencyElastically Scaling StorageElastically Scaling ThroughputNo Impedance MismatchChoice of ConsistencyEnterprise Level SLAAzure + DocumentDB with...
2016-10-26
457 reads
Julie Koesmarno, Senior Project Manager at Microsoft, takes the stage to talk about business analytics utilizing War and Peace.
Tracing emotions...
2016-10-26
589 reads
Rohan Kumar, General Manager of Microsoft, takes the stage hyping up SQL Server 2016. We keep hearing the word “Sharing”...
2016-10-26
478 reads
As I scrolled through the twitter feeds I ran across one from Tom LaRock (b|t) on PASS Summit being three...
2016-10-11
407 reads
It’s about time I got back into participating in the T-SQL Tuesday block parties that are hosted by community members...
2016-10-11
381 reads
Piggy backing onto the recent SQL Saturday post here in Louisville, I wanted to take a more in-depth look, from...
2016-09-27
328 reads
Being in a shop that utilizes Plan Explorer it was awesome to hear of the news release from SQL Sentry...
2016-09-08
427 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