Transaction Logs and Availability Groups
Everyday I learn something new. A couple of days ago I posted about a problem I had with Always On...
2018-06-21
95 reads
Everyday I learn something new. A couple of days ago I posted about a problem I had with Always On...
2018-06-21
95 reads
I had an issue where an instance of SQL Server was only showing the XTP (In Memory) performance counters. None...
2018-06-21 (first published: 2018-06-11)
2,743 reads
Which cup will you prefer to go the less
number of times to the coffee maker?image was taken from hereLet us...
2018-06-21
224 reads
Last time we looked at DATEPART(). This post is all about the DATENAME() function. So many similarities There are many...
2018-06-20
907 reads
Data Quality is a huge issue, especially now with more and more data being created daily. According to Micro Focus...
2018-06-20
268 reads
SQL Server 2017 is the biggest release and most important releases in the Microsoft product history simply because of the...
2018-06-20
1,408 reads
SQL Server Patching with the introduction and adoption of Always On has changed. The traditional method by waiting for Service...
2018-06-20
169 reads
Cosmos DB is an awesome product that is mainly used for large-scale OLTP solutions. Any web, mobile, gaming, and IoT application that...
2018-06-20 (first published: 2018-06-11)
3,546 reads
The SQL Change Automation release was early this week. This is replacing ReadyRoll and our DLM Automation products, rolling them...
2018-06-20
1,035 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan - you get a weekly email packed with all the...
2018-06-20 (first published: 2018-06-11)
1,735 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...
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