Pineapple-lumps
Results
2
comments of
Pineapple-lumps
I had a similar issue with Integrity checks. Same logic. I changed mine to (covers both bases): IF **UPPER**(@@ServerName) **UPPER**(CAST(SERVERPROPERTY('ServerName') AS nvarchar(max))) AND SERVERPROPERTY('IsHadrEnabled') = 1 My @@servername was lower,...
> Thanks IverJoc. I'd modified the SP to use UPPER on both values. Which essentially does the same thing. Good tip about changing the db collation. I assume you haven't...