Link to home
Start Free TrialLog in
Avatar of TRocex
TRocex

asked on

removing mirroring from sql server 2008 R2

we have installed the mirroring structure on two SQL server 2008 R2 Enterprise edition and also witness server running on express edition so now we dont need the mirroring structure any more then we would like to remove mirror and witness server from this structure

1.how can I remove the mirror and witness server? is it enough to do it by clicking Remove Mirroring from Mirroring properties of Principal server? are there any works to do?
this is important product server so do I need to take any downtime from customer during removing mirror and witness server?

2.when coming to second work, customer wants the edition of sql server to be downgraded from enterprise Edition to Standart Edition after removing mirroring from Principal server?
how can I downgrade from Enterpise edition to standart edition on Principal server?
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

1. First disable the mirror by running the following command on the principal:
ALTER DATABASE <your_database_name> SET WITNESS OFF

Open in new window

Then disable mirroring by running the following command on either the principal or the mirror:
ALTER DATABASE <Database_Name> SET PARTNER OFF

Open in new window


2. As far as I am aware you cannot downgrade to Standard without re-installing. But if they've already paid for a enterprise licence why bother.
Avatar of TRocex
TRocex

ASKER

do we have to take a downtime to remove the mirroring?
if we remove the mirroring as you said,any may any database interreption be? because database in online

for downgrade,how can we do it step by step?
ASKER CERTIFIED SOLUTION
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial