SQL 中的 ASP.NET 会话状态
我们使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参考这个
Please refer this one
现在它已重命名为 dbo.DeleteExpiredSessions。
如果您没有 SQL Server Agent,只需从命令行运行它即可。
此外,如果要删除大量数据,您可能需要执行 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.
Also, you might need to do a DBCC shrink if you're deleting lots of data.