如何使用 Visual Studio 2010 将 SQL 文件导入 SQL Server 2008?
到目前为止,我尝试的是转到服务器资源管理器:
- 连接到数据库
- 选择服务器名称
并尝试附加数据库文件,但它要求 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.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.