Deploying extended properties to Azure and the sql generated is raising an error
MGibson
Posts: 15 Bronze 2
in SQL Compare
Error raised is To deploy sensitivity classification information to this platform, the ADD SENSITIVITY CLASSIFICATION syntax should be used.
Tagged:
Answers
GO
IF EXISTS(SELECT 1 FROM sys.system_views sv WHERE sv.name = N'sensitivity_classifications')
BEGIN
RAISERROR('To deploy sensitivity classification information to this platform, the ADD SENSITIVITY CLASSIFICATION syntax should be used.', 16, -1)
SET NOEXEC ON
END
GO
Secondly, if you do care, you will need to use "ADD SENSITIVITY CLASSIFICATION" rather than extended properties.
I hope this helps!
Kind regards
Dan Calver | Redgate Software
Have you visited our Help Center?