远程复制 SQL Server 数据库

发布于 2024-12-05 04:44:49 字数 156 浏览 1 评论 0原文

如何将一台服务器上的一个数据库复制到另一台服务器上?我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦情居士 2024-12-12 04:44:50

您可以直接在网络共享上使用 T-SQL 进行备份:

BACKUP DATABASE MyDatabase TO DISK = '\\AnotherServer\SomeShare\MyDatabase.bak'

如果您更喜欢使用 SQL Server Management Studio:这也是可能的,但不像 T-SQL 版本那么容易,

请看一下:

You can just make the backup using T-SQL directly on a network share:

BACKUP DATABASE MyDatabase TO DISK = '\\AnotherServer\SomeShare\MyDatabase.bak'

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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文