SQL 中的 ASP.NET 会话状态

发布于 2025-01-03 21:22:41 字数 119 浏览 1 评论 0原文

我们使用sql server来存储asp.net的会话,当我查看ASPState数据库中的ASPStateTempSessions表时,它是空的,我想知道,一旦会话过期,该表中的记录是否会被删除?那里的记录什么时候会被删除?

we use sql server to store sessions of asp.net, when I look at the ASPStateTempSessions table in ASPState database, it is empty, I wondered, are the records in this table get deleted once the session is expired? when will the records be deleted there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

痕至 2025-01-10 21:22:41

InstallSqlState.sql 脚本创建一个名为
ASPState_Job_DeleteExpiredSessions 用于删除过期会话
临时数据库。回想一下,ASP.NET 不会使会话资源保持活动状态
无限期地。当使用 SQL Server 时支持此功能
保持状态,SQL Server 代理必须正在运行,以便
过期会话删除作业根据需要运行。默认情况下,该作业是
计划每分钟运行一次。它删除会话状态行
过期值小于当前时间。其下的账户
SQL Server代理运行必须有执行权限
DeleteExpiredSessions 存储过程。

请参考这个

The InstallSqlState.sql script creates a job called
ASPState_Job_DeleteExpiredSessions to delete expired sessions from
tempdb. Recall that ASP.NET does not keep session resources alive
indefinitely. To support this feature when a SQL Server is used to
maintain state, the SQL Server Agent must be running so that the
expired session deletion job runs as needed. By default, the job is
scheduled to run every minute. It deletes session state rows with an
Expires value less than the current time. The account under which the
SQL Server Agent runs must have the privilege to execute the
DeleteExpiredSessions stored procedure.

Please refer this one

只有一腔孤勇 2025-01-10 21:22:41

现在它已重命名为 dbo.DeleteExpiredSessions。

如果您没有 SQL Server Agent,只需从命令行运行它即可。

sqlcmd -S MyServerName -d MyStateDbName -E -Q "DeleteExpiredSessions"  

此外,如果要删除大量数据,您可能需要执行 DBCC 收缩。

It's been renamed to dbo.DeleteExpiredSessions now.

If you don't have SQL Server Agent, just run it from the command line ie.

sqlcmd -S MyServerName -d MyStateDbName -E -Q "DeleteExpiredSessions"  

Also, you might need to do a DBCC shrink if you're deleting lots of data.

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