Last Backup Times per Database and Backup Type
This script displays the last date and time of each backup type for each database.
It’s useful when you need to...
2014-02-26
505 reads
This script displays the last date and time of each backup type for each database.
It’s useful when you need to...
2014-02-26
505 reads
Let's say you are developing an SSIS package on your dev box to load data from an Excel file to...
2014-02-25
3,660 reads
Let’s say you are developing an SSIS package on your dev box to load data from an Excel file to...
2014-02-25
1,188 reads
Madeira’s excellent course on SQL Server Integration Services starts in March, but you can get a head start here! Take...
2014-02-09
268 reads
Last week I delivered a seminar at the Expert Days 2013 event by the name of 40 Things You Didn’t...
2013-12-16
589 reads
This is a summary of my last day in the PASS Summit. I have already written about my first, second,...
2013-10-19
416 reads
This is a summary of my last day in the PASS Summit. I have already written about my first, second,...
2013-10-19
438 reads
This is my fourth day in the PASS Summit. I have already written about my first, second and third days.
The...
2013-10-18
479 reads
This is my fourth day in the PASS Summit. I have already written about my first, second and third days.
The...
2013-10-18
513 reads
This is actually the first formal day of the PASS Summit, but it's my third day here. I have already...
2013-10-17
569 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...
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...
Comments posted to this topic are about the item Detecting Characters
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