Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
108 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
108 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
145 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
12,566 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
317 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
12,190 reads
2013-07-26
624 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,526 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,634 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,386 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
368 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...
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...
Comments posted to this topic are about the item Detecting Characters
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