?? aspsessionstate.sql
字號:
/*
This query creates the ASPSessionState table used to temporarily hold
Session State information for use when switching between ASP "Classic" and
ASP.NET. The index below is optional and not recommended on small scale
applications/systems.
*/
CREATE TABLE ASPSessionState
(
GUID CHAR(38), -- The Globally unique identifier
SessionKey VARCHAR(254), -- The Session value's "name"
SessionValue VARCHAR(254) -- The Session data
)
GO
/*
Optional Index for the ASPSessionState table, unless there will be frequent
switching from Classic to .NET , this is not needed.
Since the data is cleaned up after each use, searching for the correct
GUID in a non-enterprise application should generally be fast
without an index.
*/
CREATE NONCLUSTERED INDEX idxSessionStateGUID
ON ASPSessionState
(
)
GO
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -