如何将数据库文件 (.sql) 转换为 .mdf 文件?
我有一个给我的数据库,但采用文件格式(.sql)。我想在 SQL Server 中打开它,但我不知道如何打开,因为它说我需要 .mdf 文件?
有人可以帮忙吗?
I have a database that was given to me, but is in a file format (.sql). I want to open it in my SQL Server, but I don't know how, because it says i need a .mdf file?
Can someone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
打开 .sql 文件 - 如果它包含纯文本的 SQL 代码,您很可能已收到作为创建脚本的数据库。在 SQL Server Management Studio 中运行它。
Open up the .sql file - if it contains SQL code in plain text, you have most likely received the database as a create script. Run it in SQL Server Management Studio.
.sql 文件(通常)只是您使用首选 GUI 或 CLI 在 SQL 服务器上执行的一系列 SQL 命令。尝试在记事本中打开它,看看我的意思。
A .sql file is (usually) just a series of SQL commands that you execute on the SQL server using your preferred GUI or CLI. Try opening it in Notepad to see what I mean.
.Sql 文件只是一个保存一些 SQL 查询的随机文件。而.mdf和.ldf是保存整个数据库的Microsoft SQL Server数据库文件。
在 SQL Server Management Studio 中运行您的文件。
.Sql file is just a random file holding some SQL queries. While .mdf and .ldf are Microsoft SQL Server Database files which hold an entire database.
Run your file in SQL Server Management Studio.