ODBC DSN on 32/64 Bit Systems
Funny how you can work with data a long time and still run into something new. I’ve been working on...
2011-07-06
750 reads
Funny how you can work with data a long time and still run into something new. I’ve been working on...
2011-07-06
750 reads
I ran across this article about How to Delete an Account from Any Website on the PC Magazine web site....
2011-07-05
918 reads
Hour of the Horde by Gordon R. Dickson ($1-5 @ Amazon) is an interesting story. The basic plot is that one...
2011-07-01
429 reads
This post is password protected. To view it please enter your password below:
Password:
2011-06-30
1,480 reads
My friend Rob Hatton pointed me to Google Correlate, a new service that lets you explore data trends in a...
2011-06-30
1,793 reads
I work with a client that recently moved into a newly renovated space in a smaller office building. The renovation...
2011-06-29
887 reads
Our call for speakers for #85 will be open about another 10 days, and then Bradley Ball can jump into...
2011-06-28
616 reads
Last year we had some problems with our annual election, enough problems that clearly we needed to do a deeper...
2011-06-27
672 reads
Here’s a two part story(Part 1, Part 2 from Information Week by Larry Tieman you should read. There’s a great...
2011-06-24
895 reads
There’s a tendency to think all problems can be solved with an index or two (or partitions, or other performance...
2011-06-20
983 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