Microsoft Q3 FY19: Windows has a surprisingly strong quarter
While Microsoft's $9.6 billion in 'commercial cloud' revenues stole the headline show for its Q3 FY19, Windows also contributed significantly to Microsoft's numbers.
2019-04-24
While Microsoft's $9.6 billion in 'commercial cloud' revenues stole the headline show for its Q3 FY19, Windows also contributed significantly to Microsoft's numbers.
2019-04-24
If you really want to install the update now, you'll have to unplug your drives.
2019-04-24
Today I’m here with some exciting news out of Microsoft with the public preview of Microsoft Virtual Desktop. Virtual desktops are not a new invention and they are currently offered...
2019-04-16
It’s important for Microsoft to get this right, and it's on the right path with bug bounty programs like the one in place for Azure DevOps Server.
2019-04-15
In a few days, the fast ring will switch to a preview of the 2020 release.
2019-04-09
Microsoft has announced that as of July 2019 SQL Server 2008 and SQL Server 2008R2 will be at the end of life support. What does this mean?
2019-04-04
Microsoft is making changes to the way it will be rolling out feature updates for Windows 10 starting with the 19H1/1903 release.
2019-04-04
In September 2016, Renault-Nissan announced it planned to use a number of Microsoft cloud services in its next-gen vehicles. This week, the auto maker is ready to deploy services built on Microsoft's Connect Vehicle Platform at scale, becoming the first Microsoft Connected Vehicle Platform partner to do so.
2019-03-30
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