SQLCover v 0.2 - Bug fixes and Azure V12 Support
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let’s you identify where...
2016-05-05
27 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let’s you identify where...
2016-05-05
27 reads
I have released a new version of SQLCover which is a code coverage tool for T-SQL (let's you identify where you need to focus when writing tests).
This includes a...
2016-05-05
5 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-13 (first published: 2016-05-05)
4,341 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
37 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
39 reads
There seems to be two trains of thought and I think this is mainly down to who and where your developers are. The first is that a stored procedure...
2016-05-05
11 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
800 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
53 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
52 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because of the restirctions put on them by the requirements...
2016-05-03
8 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