SSDT How To Fix Error SQL17502
TLDR:
If you build an SSDT project you can get an error which says:
"SQL71502: Function: [XXX].[XXX] has an unresolved reference to...
2017-11-06
831 reads
TLDR:
If you build an SSDT project you can get an error which says:
"SQL71502: Function: [XXX].[XXX] has an unresolved reference to...
2017-11-06
831 reads
TLDR: If you build an SSDT project you can get an error which says:
“SQL71502: Function: [XXX].[XXX] has an unresolved reference...
2017-11-06
21 reads
TLDR: If you build an SSDT project you can get an error which says:
“SQL71502: Function: [XXX].[XXX] has an unresolved reference...
2017-11-06
106 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-11-03 (first published: 2017-10-21)
4,059 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was all virtualisations fault!
To set the scene it was a...
2017-10-21
1 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-10-21
40 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-10-21
44 reads
The question of where to install tSQLt is probably the most common question I get when I talk about unit testing T-SQL, so much so that I thought that...
2017-10-19
The question of where to install tSQLt is probably the most common question I get when I talk about unit...
2017-10-19
57 reads
The question of where to install tSQLt is probably the most common question I get when I talk about unit...
2017-10-19
720 reads
By Steve Jones
It’s been an amazing week here, as well as a long week. I’m tired,...
By Steve Jones
skidding – v. intr. the practice of making offhand comments that sound sarcastic but...
By Brian Kelley
Let’s start with the keynote. The biggest take away was how having to support...
Comments posted to this topic are about the item Step by step guide to...
Comments posted to this topic are about the item Backing up the Database Encryption...
Comments posted to this topic are about the item Technology Fears
In my SQL Server 2022 database, I run this:
USE Sales; GO CREATE DATABASE ENCRYPTION KEY WITH ALGORITHM = AES_256 ENCRYPTION BY SERVER CERTIFICATE MyServerCert; GOThis works, but I want to prepare for the future and potential issues. How do I back up my DEK? See possible answers