远程复制 SQL Server 数据库
如何将一台服务器上的一个数据库复制到另一台服务器上?我正在使用 SQL Server 2005。过去我使用任务 ->备份然后恢复到新数据库。但是我的数据库服务器已满,我无法删除任何内容,而且 SQL Server 似乎只允许备份到本地计算机。
有没有简单的方法可以做到这一点?
How do I copy one database on one server to the next? I am using SQL Server 2005. In the past I used Tasks -> Backup then Restore to the new database. But my server with the database is full and I can't delete anything and SQL Server only appears to allow backups to the local machine.
Is there an easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接在网络共享上使用 T-SQL 进行备份:
如果您更喜欢使用 SQL Server Management Studio:这也是可能的,但不像 T-SQL 版本那么容易,
请看一下:
You can just make the backup using T-SQL directly on a network share:
If you prefer to use SQL Server Management Studio: that's possible as well, but not as easy as the T-SQL version,
Take a look at this: