lordbeazley
6/24/2014 - 6:04 PM

SQL: Enable Contained Database Authentication (CDA)

SQL: Enable Contained Database Authentication (CDA)

sp_configure 'show advanced', 1 ;
go
reconfigure with override ;
go

sp_configure 'contained database authentication', 1 ;
go
reconfigure with override ;
go

sp_configure 'show advanced', 0 ;
go
reconfigure with override ;
go