|
Is there a way to see the security configuration of existing mirrored databases? I need to re-mirror these databses and so I need to know if Windows autentication has been used or Sql-server autentication. Any answer would be helpfull Regards Hugo
(comments are locked)
|
That'll return an INT:
See SERVERPROPERTY documentation @hugo as you can see the security mode is set at server level and not at database level - and mirroring is a database level option, so the answer will be the same for all the mirrored databases
Sep 04 '12 at 08:34 PM
Kev Riley ♦♦
(comments are locked)
|
|
Mirroring endpoints security is configured either through Windows IDs or Certificates. To determine what authentication your endpoints are using run the following: SELECT * FROM sys.database_mirroring_endpoints Look under the connection_auth_desc column for endpoint authentication type.
(comments are locked)
|

