Subversion:转储备份,我需要增量备份吗?
我是一个颠覆菜鸟。我计划使用以下命令从存储库进行备份:
svnadmin dump C:\Repositories\Dev > D:\backups\repo_dev.bak
我的目的是将其放入计划任务(Windows Server 2008)中并每天或每周运行它。我可以只使用这个命令(旧备份被新备份替换)还是需要单独进行增量备份?或者热拷贝备份?
I'm a subversion noob. I was plannig to take backups from the repo using this command:
svnadmin dump C:\Repositories\Dev > D:\backups\repo_dev.bak
My intention is to put this into Scheduled Task (Windows Server 2008) and run this on daily or weekly basis. Can I use this command only (old backup is replaced by the new one) or do I need incremental backups separately? Or hotcopy backups?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行完整转储或增量转储。增量的主要问题是需要多次备份来重建数据。完整转储是一个独立的全包数据集。
您选择哪一个取决于以下几个因素:
You can do either a full dump or an incremental. The chief problem with an incremental is that several backups are needed to reconstruct the data. A full dump is a stand alone all-inclusive data set.
Which one you choose depends on several factors: