将 ASP.NET 会员数据移至生产环境
所有,
我们有一个 ASP.NET 应用程序在我们的临时服务器/数据库上运行。该应用程序运行良好。我们正在使用 ASP.NET Memebership/Roles 等。
现在是时候将应用程序部署到生产环境了。作为部署的一部分,我们希望将 ASP.NET Memebership 数据库复制/迁移到生产服务器。
我们可以简单地通过 SQL Server 的导出/导入功能来完成此操作吗?当 ASP.NET 应用程序部署在新机器上时,移动到生产数据库的应用程序 ID 和角色 ID 是否有意义?
谢谢, 约翰
All,
We have a ASP.NET application working on our staging server/DB. The application works fine. We are using ASP.NET Memebership/Roles, etc.
Now it's time to deploy the application to production. As part of the deployment, we want to copy/migrate the ASP.NET Memebership database to the production servers.
Can we simply do this via SQL Server's export/import functions? Will the applications IDs and role IDs that move to the production DB make sense when the ASP.NET application is deployed on the new boxes?
Thanks,
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这很好。 ID 全部用于内部存储,所以没问题。只要确保配置匹配就可以了
Yes, this is fine. The IDs are all for internal storage, so no issue. Just make sure the config matches and you are good
您可能希望将 RedGate 的 SQL Data Compare 视为更强大(可配置)的数据移动解决方案数据库之间。我认为您可能可以进行简单的导出/导入,但您需要小心自动生成列。
You might want to look at RedGate's SQL Data Compare as a more robust (configurable) solution to moving data between databases. I think you'd probably be ok doing a simple export/import, but you'd need to be careful of autogenerate columns.
使用 Visual Studio 中的数据库发布向导?
http://social.msdn.microsoft .com/Forums/is/vssetup/thread/42bbad47-5b6e-4e99-8d27-07bcbd123064
一切都应该在生产服务器上正常工作。
Use the Database Publishing Wizard from within Visual Studio?
http://social.msdn.microsoft.com/Forums/is/vssetup/thread/42bbad47-5b6e-4e99-8d27-07bcbd123064
Everything should work fine on the production server.