如何在没有 SQL Server Management Studio 的情况下在 SQL Server 2008 中启用文件流
我正在尝试在 SQL Server 2008 中启用 Filestream,但我的计算机上没有安装 SQL Server Management Studio 组件,我发现的所有信息都需要 Management studio,如果没有它,我如何启用它?谢谢
I'm trying to enable Filestream in SQL Server 2008 and I Do not have SQL Server Management Studio component installed on my computer, all info I've found already needs the Management studio, how could I enable it without it? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 sqlcmd 实用程序输入以下命令:
SQL Server 2008 支持 3 个级别的 FILESTREAM 访问,下面提到这些级别供您参考。
看看这个页面(http://www.mssqltips.com/tip.asp?tip=1838)了解更多信息。
using sqlcmd utility enter the following commands:
There are 3 levels of FILESTREAM access which are supported in SQL Server 2008 and they are mentioned below for your reference.
look at this page (http://www.mssqltips.com/tip.asp?tip=1838) for more info.
您可以使用 WMI 启用操作系统部分。以下是有关此内容的一些详细信息以及可下载的脚本:
http://sqlsrvengine.codeplex.com/wikipage? title=FileStreamEnable
执行此操作后,您仍然需要通过 osql 或类似 Alex_L 的答案来启用。
You can enable the OS portion using WMI. Here's some details on this along with a downloadable script:
http://sqlsrvengine.codeplex.com/wikipage?title=FileStreamEnable
After doing this you'll still need to enable through osql or similar like Alex_L's answer.
尽管您可以使用 sp_configure 设置 FILESTREAM 访问级别,但文档指出除非也使用 SQL Server 配置工具配置 Windows,否则它不会产生任何影响。
假设服务器处于您或您公司的内部控制之下,您只需通过 RDP 访问它并使用服务器上安装的工具即可。
Although you can use sp_configure to set the FILESTREAM access level, the documentation notes that it has no effect unless Windows is also configured using the SQL Server Configuration tool.
Assuming that the server is under your or your company's internal control, you can just RDP to it and use the tools installed on the server.
要在 SQL Server 2008 上启用 FILESTREAM 功能,您可以使用 SQL Server 配置管理器:
To enable FILESTREAM feature on SQL Server 2008, you can use SQL Server Configuration Manager :