分离 SQL Server 数据库

发布于 2024-07-11 13:50:28 字数 279 浏览 9 评论 0原文

我使用的是 SQL Server 2008。我的数据库大小几乎为 2GB。 其中 90% 是一张表(根据 sp_spaceused),我的大部分工作都不需要这张表。

我想知道是否可以将这张表备份到一个单独的文件中,这样我就可以比这个表更频繁地传输重要数据。

我的猜测是最简单的方法是创建一个新数据库,在那里创建表,将表内容复制到新数据库,删除表关系,删除表,创建一个指向另一个数据库的视图并使用该视图在我的应用程序中。

然而,我想知道您是否有任何我目前可能不知道的不同策略的指示。

I'm using SQL Server 2008. My database is almost 2GB in size. 90% of it is one table (as per sp_spaceused), that I need don't for most of my work.

I was wondering if it was possible to take this table, and have it backed up in a separate file, allowing me to transfer the important data on a more frequent basis than this one.

My guess is the easiest way to do this is create a new database, create the table there, copy the table contents to the new database, drop the table relationships, drop the table, create a view pointing to the other database and use that view in my applications.

However, I was wondering if you had any pointers to different strategies that I may not be aware of at this point.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

弃爱 2024-07-18 13:50:28

在不同的文件组中创建表。

这是一个包含一些很好示例的链接。

这将创建第二个物理文件,仅用于那张桌子。 可以将其放置在不同的物理驱动器上以提高性能。 您可以仅对特定文件组进行备份或恢复,这听起来就是您所需要的。

这是“数据分区”这一更大主题的一个示例,其中涉及将大型表划分到多个文件中的各种方法。

Create the table in a different FileGroup.

Here's a link with some good examples.

This creates a second physical file for just that table. It can be placed on a different physical drive for performance. You can do a backup or restore of just specific filegroups, which is what it sounds like you need.

This is one example of the larger topic of "Data Partitioning", which involves various methods of dividing large tables across multiple files.

携君以终年 2024-07-18 13:50:28

我建议使用文件组解决方案。 但是,要将表从数据库复制到另一个数据库,您可以执行此技巧:

SELECT * INTO MyNewDatabase..MyTable FROM MyOldDatabase..MyTable

I suggest the filegroup solution. However to copy a table from a database to another you can do this trick:

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