How to find configurations changes on a SQL server regarding principal and mirror settings? -


is possible find time stamp , login used when changing principal or mirror settings specific database server? it's on sql server 2008 r2 if relevant

might helpful enter image description here

if of above image didn't record please run below query follow above image instruction, works me

exec sp_configure 'show advanced options', 1; go reconfigure override; go exec sp_configure 'default trace enabled', 0; go reconfigure override; go exec sp_configure 'default trace enabled', 1; go reconfigure override; 

and can of sys object, have give physical path of trace file can record of activity

    select * fn_trace_gettable ('c:\program files\microsoft sql server\mssql11.sqlexpress\mssql\log\log_34.trc', default) 

Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -