可以安全地删除未使用的 ASP.NET 成员资格表吗?
我将在我的网站上使用 ASP.NET 会员模型。 但是,有多个表我不打算使用,例如: aspnet路径 aspnet个性化AllUsers aspnet每个用户的个性化 aspnet简介 aspnetWebEvent事件
删除这些表是否安全,或者我是否会导致 ASP.NET 成员资格框架(在 System.Web.Security 中)的工作方式出现问题?
我真的很喜欢保持东西干净,但这些桌子让我很烦恼。
I'm going to be using the ASP.NET Membership model on my website. However, there are multiple tables that I do not plan to ever use, such as:
aspnetPaths
aspnetPersonalizationAllUsers
aspnetPersonalizationPerUser
aspnetProfile
aspnetWebEventEvents
Is it safe to delete these tables or will I cause problems with the way ASP.NET's membership framework works (in System.Web.Security) ?
I really like keeping things clean and these tables are bothering me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 aspnet_regsql.exe 并选择您要使用的部分想要删除:
将来,使用
-A mr
参数运行该工具以仅添加成员资格和角色管理器。Use the aspnet_regsql.exe and choose which parts you want to remove:
In the future, run the tool with the
-A mr
parameter to only add the membership and role manager.