Interview with the Intrepid Buck Woody
This is the second in a series of interviews with speakers presenting at the SQLServerCentral.com track at SQL Server Connections...
2010-09-02
1,209 reads
This is the second in a series of interviews with speakers presenting at the SQLServerCentral.com track at SQL Server Connections...
2010-09-02
1,209 reads
I’m borrowing the title for this post from the pre-conference seminarDon Gabor is doing at this PASS Summit this year....
2010-09-02
371 reads
Voting began yesterday with ballots mailed to qualified members. More information can be found here, including contact info for Hannes...
2010-09-02
258 reads
Pirate Code: They're more like guidelines really...
The last few weeks we’ve watched the drama unfold in regards to the PASS...
2010-09-02
1,303 reads
Screen captures have become part of our computer culture… “I’ll send you a screen
shot of the window so you can...
2010-09-02
500 reads
I try to carry a camera, and a video camera, most of the time when I’m traveling. I have a...
2010-09-02
372 reads
Hi friends
Thank you very much for supporting this blog. It really give me lots of encouragement to share my knowledge...
2010-09-02
770 reads
Im often asked the question – whats best SQL or Oracle ?
The Oracle guys will tell you that SQL Server does not...
2010-09-02
604 reads
This post provides the code for a stored procedure to move SSIS packages between SQL 2005 SSIS servers. Continue reading ?
2010-09-01
22 reads
Today’s post is one that I have been debating on whether to publish for a while. The purpose of the...
2010-09-01
983 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