Business of Software 2008 - A New Type of Company - 37 Signals
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-09
811 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-09
811 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-09
388 reads
I'm a couple weeks last posting this, but wanted to get my notes down anyway for future use. The goal of...
2008-09-09
466 reads
I'll define a brown bag lunch as a training event held at lunch time where someone on the team does...
2008-09-08
1,101 reads
I'm starting a series of blog posts from the Business of Software conference that I attended last week in Boston....
2008-09-08
989 reads
Sorry, I couldn't help not including 'Book Review' on the subject line, hopefully you're not too disappointed!
I just finished reading...
2008-09-07
358 reads
I have been working on sql server replication (on sql server 2K5) for more than 1 year now, starting from...
2008-09-07
906 reads
Renaming Databases was just published on SSC, another in my lastest effort to expose some of the hidden complexities in seemingly...
2008-09-04
295 reads
If all has gone well I've been on vacation this week, enjoying the world class quartz sand at Siesta Key...
2008-09-04
1,110 reads
I still need to jot some thoughts about using the Kindle, but a quick note from traveling.
I downloaded 3 or...
2008-09-03
435 reads
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...
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
WhatsApp:0818-751-777 Gedung Gajah Tebet, Jl. Dr. Saharjo No.Raya 111 Unit N & O, RT.1/RW.1,...
When things go wrong - like trouble signing in, videos pausing, unclear charges, or...
Tlp/Wa_Cs:0817-866-887. Jl. Lenteng Agung Raya No.26 E-F, RT.1/RW.4, Ps. Minggu, Kota Jakarta Selatan, Daerah...
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