vote up 1 vote down star

I have setup both mirroring and and log shipping on 8 databases of about 10 GB each size on same instance, but now when I want to mirror another database it very long to display the Database Properties page. Any suggestion for this problem.

flag

3 Answers

vote up 0 vote down

You could set up a trace and see what is going on when the GUI makes the call to SQL.

I had a similar problem with a database that was moved from 2000 to 2005, but it eventually cleared up on it's own.

link|flag
vote up 0 vote down

Running Profiler is always a good idea. Set a filter on ApplicationName for Microsoft SQL Server Management Studio and that will show you all the database interaction management studio has with the server.
It may be possible that another process is blocking the management studio query, so try running the sp_who2 query as sa and look in the blkby column.
You can kill the blocking SPID with the kill command, although use with caution!

link|flag
vote up 1 vote down

I am assuming you are using "ALTER DATABASE [dbname] SET SAFETY FULL" as that will cause the databases to update syncronized (e.g. your transaction will not complete until commited on both database servers).

If you have high latency between the servers, you will get a large performance penalty.

You could use "ALTER DATABASE [dbname] SET SAFETY OFF" which will not give you full mirroring (the slave can fall behind, and you have to manually fail-over), but you will not get a performance penalty.

See BOL for more information.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.