【问题标题】:SSIS Installed, but no SSIS roles appearing when browsing已安装 SSIS,但浏览时未显示 SSIS 角色
【发布时间】:2011-09-15 15:22:38
【问题描述】:

伙计们,请原谅我在这方面缺乏知识,这是我一直负责解决的问题,但运气不佳..

我有一个服务器,安装了 SQL Server 2008 R2,这是默认实例,我可以看到 SSIS 服务已安装并且当前正在运行。

我遇到的问题是,此页面上没有描述任何 SSIS 角色:

http://msdn.microsoft.com/en-us/library/ms141053.aspx

存在于安全性的服务器角色小节中...我如何使这些可用,或者,为什么它们会丢失?...

提前致谢,

戴夫

【问题讨论】:

    标签: sql-server installation roles ssis


    【解决方案1】:

    角色db_ssisadminds_ssisltduserdb_ssisoperator可以在系统数据库msdb中找到。参考截图#1

    http://social.msdn.microsoft.com中提到的答案参考以下链接:

    SSIS Package Roles - Assigning user to Role

    来自 social.msdn.microsoft.com 的答案摘录:

    These are just roles in the msdb database.  
    To assign the user to the role, you need to have the login as a user in 
    that database and assign the role as usual (i.e. go through the gui to 
    set the roles of the user or use T-SQL to set them).
    
    USE msdb;
    GO
    
    EXEC sp_addrolemember N'db_dtsltduser', N'{User Name Here}';
    GO
    

    希望对您有所帮助。

    屏幕截图 #1:

    【讨论】:

    • 嗯,同样的数量太棒了,也太尴尬了。谢谢 Siva,欠你一个!
    猜你喜欢
    • 1970-01-01
    • 2023-04-03
    • 2021-04-11
    • 2021-08-21
    • 2015-11-01
    • 2010-12-29
    • 2010-11-29
    • 1970-01-01
    • 2020-12-02
    相关资源
    最近更新 更多