有没有办法重建/修复 ASP.Net 个性化表而不丢失其中的数据?
我继承了一个使用 ASP.Net 会员服务的 Asp.Net 应用程序。 我正在尝试向网站添加具有个性化的 Web 部件,但遇到了很多错误。 看起来 Aspnet_regsql.exe 生成的表已被更改 - 可能在过去的某个时刻使用“select into”进行复制,导致它们丢失所有索引和主键。
如何修复这些表而不丢失其中的所有数据?
I inherited an Asp.Net app that uses ASP.Net membership services. I am trying to add web parts with personalization to the site, and am getting a lot of errors. It looks like the tables generated by Aspnet_regsql.exe have been changed - probably copied at some point in the past using "select into" causing them to lose all their indexes and primary keys.
How can I repair these tables without losing all the data inside?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道 BCP 是一个旧工具......但它仍然有效。 也许有一个更简单的方法来做到这一点,但这就是我会这样做的。
I know BCP is an old tool... but it still works. Maybe there is an easier way to do it, but this is how I would do it.