如何从 Webmatrix 导出 SQLExpress 数据库?
我使用 webmatrix 来编写我的网络应用程序。现在我需要通过 ftp 将文件上传到主机服务器。数据库文件位于 App_Data
文件夹中,其名称为:“db.sdf.backup”
。 主机服务器使用studio manager来管理数据库。
现在,我的问题是如何导出数据库以便它可以在他们的服务器上运行?
嘿,我有同样的问题,我想将我的数据库从 webmatrix 导出到 1and1 服务器以发布我的网站。不幸的是,webmatrix 的迁移选项仅适用于 SQL Server 数据库,不适用于 Mysql 数据库!你还有别的想法吗?
谢谢
I used webmatrix to write my web app. and now I need to upload my files to a host server via ftp. The database file located in App_Data
folder it's name: "db.sdf.backup"
.
The host server uses studio manager to manage the database.
Now, my question is how do i export my database so it would work on their server?
Hey, I have the same problem, I want to export my database from webmatrix to 1and1 servers to publish my web site. Unfortunatly the migrate option of webmatrix is only available for SQL Server database and not for Mysql Database ! Do you have another idea ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您的数据库位于 SQL Server Express 中吗?您提到的文件(
db.sdf
)是一个SQL Server Compact数据库,WebMatrix确实默认使用SQL Server Compact。如果是这种情况,您需要将数据库“正确”转换为 SQL Server。 WebMatrix 通过在功能区的 SQL Server 部分中提供“迁移”命令,使您的操作更加轻松。Are you sure your database is in SQL Server Express? The file you mention (
db.sdf
) is a SQL Server Compact database, and WebMatrix indeed uses SQL Server Compact by default. If this is the case you need to convert your database to SQL Server "proper". WebMatrix makes it easier for you by offering the Migrate command in the SQL Server section of the ribbon.