|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Monday, February 18, 2013 2:49 AM
Points: 447,
Visits: 84
|
|
Hi there . I have an Interesting Question to anyone that might help.
We have a production server running at a remote site. We would like to restore Transactional backups from the production server to the Development Server Database every night so that the data on the Development server is the same as the Production server . We use the Development backup mostly for queries and support for any inquiries from users and want to Limit access to the Production server
If anybody could possible direct me in the right direction I would be most grateful.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 10:02 AM
Points: 38,086,
Visits: 30,381
|
|
Restore the full backup WITH Standby. That way the database is readable (but readonly) and you can restore additional logs.
This sounds like a reporting requirement, not a development environment. In many cases production data MUST NOT be available in development due to confidentiality and privacy concerns.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 5:14 PM
Points: 4,009,
Visits: 4,891
|
|
bothaellen (10/27/2010) We have a production server running at a remote site. We would like to restore Transactional backups from the production server to the Development Server Database every night so that the data on the Development server is the same as the Production server .
You're talking about log shipping. There's a good description of it in BOL and tons of articles on the web. Also check out "Database Mirroring and Log Shipping" in BOL to see if mirroring might better fit your needs.
Greg
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Today @ 10:09 AM
Points: 2,581,
Visits: 7,294
|
|
I'm probably veering a bit off topic, but if you only need a subset of Production for reporting, replication is an option. This can be useful to bring over only what you need, and omit sensitive data.
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Monday, February 18, 2013 2:49 AM
Points: 447,
Visits: 84
|
|
Yeah I think that would be the best way ... Thanks for all the help guys . I really do appreciate very much
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 6:15 AM
Points: 814,
Visits: 1,203
|
|
The problem with log shipping is the exclusive access during the restore of the log. Since this is a DEV server, developers would get disconnected every time there is a log restore. This may/may not be acceptable.
Replication may not work so well if developers are changing the schema.
That said, it does sound more like a reporting server than a development server.
Steve
|
|
|
|