February 28, 2014 at 1:02 pm
Hi,
What is the best way to move a Production database to a test one ever days after processing is done ?
I am thinking about backup/restore as the simplest way. Will you recommend log ship or replication?
Thanks
February 28, 2014 at 2:30 pm
I would go with the Backup/restore route as well. This has the benefit that nothing that happens in your test environment can have an effect on your production environment. And, you can make data (or even ddl) updates in your test environment.
My biggest problem would be with the schedule. You will almost certainly have this scripted out, but it will almost equally certainly go off in the middle of some critical testing round.
February 28, 2014 at 2:42 pm
Rem70Rem (2/28/2014)
Hi,What is the best way to move a Production database to a test one ever days after processing is done ?
I am thinking about backup/restore as the simplest way. Will you recommend log ship or replication?
Thanks
Best approach would be Backup\restore on a scheduled basis.
--
SQLBuddy
March 3, 2014 at 4:59 am
Rem70Rem (2/28/2014)
Hi,What is the best way to move a Production database to a test one ever days after processing is done ?
I am thinking about backup/restore as the simplest way. Will you recommend log ship or replication?
Thanks
Do you need the test database read only or read\write?
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" 😉
March 3, 2014 at 8:11 am
Hi,
The "test" version needs to have the same right as the production one, so read/write.
Thanks all for your help.
March 3, 2014 at 8:19 am
Rem70Rem (3/3/2014)
Hi,The "test" version needs to have the same right as the production one, so read/write.
Thanks all for your help.
If the test DB is R\W, You can't use LShipping\DB Mirroring. Replication can be used but it's good for object level replication.
Backup\Restore would be best for this situation ..
--
SQLBuddy
March 3, 2014 at 8:48 am
Backup/restore for me as well.
I might script this as a daily process that moves the latest backup from production to test, but doesn't necessarily restore it. This would make it fast if you need to ad hoc restore any day.
March 4, 2014 at 4:36 pm
We have similar process, when we copy full backup on the weekend and diff backup(s) on the weekdays...
March 5, 2014 at 7:48 am
We have several databases that the apps folks want refreshed on a scheduled basis. Some weekly and some monthly. Just create a backup job and schedule it and then a restore job to restore it along with all of the steps to recreate users access to the test db.
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply