使用 SQL Server Server Management Studio 导入/导出数据库

Import / Export database with SQL Server Server Management Studio(使用 SQL Server Server Management Studio 导入/导出数据库)
本文介绍了使用 SQL Server Server Management Studio 导入/导出数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我认为这很简单,但事实并非如此...我确定有一种简单的方法可以做到,但我无法找到它.为我感到羞耻.

我想导入/导出数据库本身、表、约束(外键等).我宁愿不拿数据,但如果没有其他办法,我可以摆脱它.

I want to import/export the database itself, the tables, the constraints (foreign keys and so on). I'd rather not get the data with it, but I can get rid of it after if there's no other way.

那么……您如何使用 MS SQL Server Management Studio 导出数据库?你如何导入它?

So... how do you export a database using MS SQL Server Management Studio ? How do you import it?

我找到的唯一解决方案是右键单击表格并创建脚本",但我有大约 100 个表格,所以我宁愿避免这种情况.

The only solution I found was right click on the tables and "script to Create", but I have something like 100 tables, so I'd rather avoid this.

谢谢!

推荐答案

右键单击数据库本身,Tasks -> Generate Scripts...

Right click the database itself, Tasks -> Generate Scripts...

然后按照向导操作.

对于 SSMS2008+,如果您还想导出数据,请在设置脚本选项"步骤中,选择高级"按钮并将脚本的数据类型"从仅架构"更改为仅数据"或架构和数据".

For SSMS2008+, if you want to also export the data, on the "Set Scripting Options" step, select the "Advanced" button and change "Types of data to script" from "Schema Only" to "Data Only" or "Schema and Data".

这篇关于使用 SQL Server Server Management Studio 导入/导出数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)