可以安全地删除未使用的 ASP.NET 成员资格表吗?

发布于 2024-07-12 03:31:03 字数 273 浏览 5 评论 0原文

我将在我的网站上使用 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
aspnet
PersonalizationAllUsers
aspnetPersonalizationPerUser
aspnet
Profile
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遥远的绿洲 2024-07-19 03:31:03

使用 aspnet_regsql.exe 并选择您要使用的部分想要删除:

-R all|m|r|p|c|w

all - 所有服务,包括公共服务
共享的表和存储过程
服务

m - 会员资格

r - 角色管理器

p - 个人资料

c - Web 部件个性化

w - 网络事件

将来,使用 -A mr 参数运行该工具以仅添加成员资格和角色管理器。

Use the aspnet_regsql.exe and choose which parts you want to remove:

-R all|m|r|p|c|w

all - All services, including common
tables and stored procedures shared by
the services

m - Membership

r - Role Manager

p - Profile

c - Web Parts Personalization

w - Web Events

In the future, run the tool with the -A mr parameter to only add the membership and role manager.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文