An Interview with Allen Kinsel, PASS Board Candidate
Allen Kinsel is running for the board of directors of PASS. He took a little time to answer some questions from Steve Jones
2013-09-27
446 reads
Allen Kinsel is running for the board of directors of PASS. He took a little time to answer some questions from Steve Jones
2013-09-27
446 reads
2013-09-27
2,121 reads
2013-09-26
289 reads
2013-09-25
191 reads
There's a cost to managing data that isn't always considered: the human cost. Additional stress, work, and load can result in less than efficient management, even when you contain hard costs.
2013-09-24
148 reads
The increasing power and shrinking size of computing devices means that more and more people can gather and analyze data. Steve Jones talks about some opportunities.
2013-09-23
108 reads
It’s just a week until Dev Connections. This is one of the great conferences for the hybrid technology person, with...
2013-09-23
682 reads
We have so many ways in which we can grow our SQL Server careers. Steve Jones shares a few today.
2013-09-19
256 reads
Are you worried about your job in the future? Steve Jones thinks you shouldn't be.
2013-09-18
193 reads
I ran across a twitter conversation about a post recently. The post talks about detaching or attaching databases in bulk....
2013-09-18
1,094 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