2012-12-31
1,229 reads
2012-12-31
1,229 reads
2012-12-25
912 reads
The 8th cumulative update release for SQL Server 2008 Service Pack 3 is now available for download at the Microsoft...
2012-11-22
946 reads
The 1st cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft...
2012-11-22
1,994 reads
Upgrading fulltext data from a SQL Server 2005 database to SQL Server 2012 is to restore a full database backup...
2012-11-19
2,620 reads
The Connect to SQL Server Management Studio presents a new Additional Connection Parameters Page. Use the Additional Connection Parameters page...
2012-11-16
17,235 reads
Become Microsoft Community Contributor.
I am very happy after receiving this affiliation from Microsoft last month.
My MCC badge is visible now...
2012-11-15
1,022 reads
How to save deadlock graph events as .xdl file ?
On the File menu, click New Trace, and then connect to...
2012-11-14 (first published: 2012-11-07)
3,605 reads
Today, We try to check of SQL server when trying to take Compress & UnCcomprees Backups in one Media\File.
Query No. 1
BACKUP...
2012-11-14
2,496 reads
Wishing You a Very Happy Diwali…………….
KAHI TIMTIMAHAT HAIN DIYO KI, KAHI SHOR HAAN ATHISBAZI KA
CHAMAK HAAN DIL MAIN, UMEEDO KI...
2012-11-13
743 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