Physical Servers What are They?
Today I'm in the process of installing some physical servers. To put this into perspective due to the companies I...
2011-11-09
515 reads
Today I'm in the process of installing some physical servers. To put this into perspective due to the companies I...
2011-11-09
515 reads
I recently had a great opportunity to present a preconference all day event in Tampa with the crew from the...
2011-11-09
722 reads
A few weeks ago one of our clustered server nodes blue-screened and when it came back on SQL refused to start. I started digging in and this is what...
2011-11-09
1,020 reads
A few weeks ago one of our clustered server nodes blue-screened and when it came back on SQL refused to...
2011-11-09
4,483 reads
A few weeks ago one of our clustered server nodes blue-screened and when it came back on SQL refused to start. I started digging in and this is what...
2011-11-09
13 reads
Happy, Wednesday folks! We're 3-days away from SQLInspiration, and that is the event we've been reading about for some months...
2011-11-09
1,301 reads
Welcome back to day 2 of Advanced Indexing. Today we’re going to look at a feature that was added in...
2011-11-09
1,939 reads
Unless you’ve worked in a vacuum the likelyhood is that you either are a third company or you have many...
2011-11-09
492 reads
If you have been creating SSIS packages in Business Intelligence Development Studio (BIDS) for any length of time, you have...
2011-11-09
1,084 reads
I have seen quite a few posts and questions lately from people that are trying to change the data in...
2011-11-08
1,930 reads
By James Serra
Once again there were a number of Microsoft Build announcements related to data and...
A good week ago I hosted the monthly T-SQL Tuesday blog party. I invited...
By Steve Jones
I was messing around with SQLCMD and I realized something I hadn’t known. I’ve...
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