SQL Server Scripts Manager From Redgate Software
Redgate Software has released a useful free tool called SQL Server Scripts Manager. I was happy to be included as...
2010-12-22
1,919 reads
Redgate Software has released a useful free tool called SQL Server Scripts Manager. I was happy to be included as...
2010-12-22
1,919 reads
Microsoft has released SQL Server 2008 R2 RTM Cumulative Update 5 (CU5), which is Build 1753. I count 40 separate...
2010-12-21
890 reads
Last Friday afternoon (December 17, 2010), Microsoft released the final RTM build of Service Pack 4 (SP4) for SQL Server...
2010-12-20
799 reads
I have been quite the slacker (by my usual standards) for blogging over the past few weeks, but my excuse...
2010-12-14
675 reads
One reason (besides laziness) that I have been fairly light on my blogging lately is that I have been working...
2010-12-14
1,280 reads
SQL Server Hardware will provide the fundamental knowledge and resources you need to make intelligent decisions about choice, and optimal installation and configuration, of SQL Server hardware, operating system and the SQL Server RDBMS.
2010-12-03
10,889 reads
I will be giving a presentation and demo to the PASS Database Administration Virtual Chapter on Wednesday, December 8 2010...
2010-12-02
853 reads
I recently had a request from a client to come up with a routine to do a full compressed database...
2010-11-16
1,417 reads
Here is a small selection of useful tools for getting some specific hardware information from any Windows based system you...
2010-11-16
2,255 reads
Microsoft has released SQL Server 2008 Service Pack 2 Cumulative Update 1, which is Build 4266. I count 67 fixes...
2010-11-16
1,008 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