如何将 MDF/LDF DotNetNuke/WebMatrix 数据导入 SQL Server
如何将 Database.mdf 文件中的数据导入 SQL Server?我正在使用 RazorSQL 访问 MSSQL 数据库,并尝试“导入”数据,但不知道使用哪个“分隔符”。
我认为我的 DotNetNuke 数据位于 Database.mdf 文件中,因为 WebMatrix 在本地运行并且 web.config 文件引用它。
我也有一个 LDF 文件。
使用 WebMatrix Migrate 不是一个选项。这是我正在寻找的手动程序。
How do I import data in the Database.mdf file into a SQL Server? I am using RazorSQL to access the MSSQL database, and tried to "import" the data, but did not know which "separator" to use.
I presume that my DotNetNuke data is in the Database.mdf file since WebMatrix was running locally and the web.config files references it.
I have an LDF file as well.
Using WebMatrix Migrate is not an option. This is a manual procedure I am looking for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开 SQL Server Management Studio 并连接到数据库服务器。
然后按照以下步骤操作:
附加 MDF 文件
正在附加不带 LDF 的 MDF 文件
这会将您的数据库导入 SQL Server,然后您可以导出数据或从 SQL Server Management Studio 对其执行任何您想要的操作。
Open up SQL Server Management Studio and connect to your database server.
Then follow these steps:
Attaching a MDF file
Attaching an MDF file without LDF
This will get your database into SQL Server then you can export the data or do whatever you want with it from SQL Server management studio.