如何使用 Visual Studio 2010 将 SQL 文件导入 SQL Server 2008?

发布于 2025-01-01 00:16:59 字数 165 浏览 0 评论 0原文

到目前为止,我尝试的是转到服务器资源管理器:

  • 连接到数据库
  • 选择服务器名称

并尝试附加数据库文件,但它要求 .mdf 文件,我不知道这是什么以及如何创建它。我的数据库是一个 .sql 文件

What I tried so far is to go to server explorer:

  • connect to a database
  • choose server name

and tried to attach a database file but it asks for an .mdf file and I don't know what is this and how to create it. My database is a .sql file

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

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

发布评论

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

评论(1

一影成城 2025-01-08 00:16:59

.sql 文件是包含可以执行的语句的文件。它们可以包含创建数据库和表(以及其他内容)或操作现有数据库中的数据(例如插入记录)的语句。

如果要执行.sql文件,可以在Visual Studio中打开它,然后运行它。它会要求您连接到 Sql Server 实例,然后执行语句。

这里是解释这一点的 MSDN 文档

A .sql file, is a file that contains statements that can be executed. They can contain statements that create database and tables (and other stuff) or that manipulate the data in an existing database (like inserting records).

If you want to execute the .sql file, you can open it in Visual Studio and then run it. It will ask you for a connection to a Sql Server instance and then the statements will be executed.

Here is the MSDN documentation that explains this.

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