使用脚本在 SQL Server 中设置 ASP.NET SQLServer 会话状态
使用 ASPNET_REGSQL 工具,我使用以下内容生成一个脚本:
ASPNET_REGSQL.exe -ssadd -sstype c -sqlexportonly c:\addseesion.sql -E -d myDatabase -s myServer
在创建的脚本中有这样的注释:
--------------------------------------------------
Note:
Do not run this file manually.
You should use aspnet_regsql.exe to install
and uninstall SQL session state.
--------------------------------------------------
问题是,在我工作的环境中,我必须开发一个脚本来提供给 DBA,他们没有.NET sdk 并且无法使用 aspnet_regsql 工具。
这个脚本可以按原样运行吗?
Using the ASPNET_REGSQL tool I generate a script using the following:
ASPNET_REGSQL.exe -ssadd -sstype c -sqlexportonly c:\addseesion.sql -E -d myDatabase -s myServer
In the script that is created there is this comment:
--------------------------------------------------
Note:
Do not run this file manually.
You should use aspnet_regsql.exe to install
and uninstall SQL session state.
--------------------------------------------------
The trouble is, in the environment that I work I must develop a script to give to the DBA's, they don't have the .NET sdk and wont be able to use the aspnet_regsql tool.
Can this script be run as is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
aspnet_regsql 工具实际上是.NET Framework 的一部分。你可以在以下位置找到这个工具
%WindDiR%\Microsoft.NET\Framework\<框架版本>
aspnet_regsql tool is actually part of .NET Framework. you can find this tool at
%WindDiR%\Microsoft.NET\Framework\<framework version>