SSIS已安装,但浏览时未显示SSIS角色

Dav*_*ave 0 sql-server install ssis roles

伙计们,请原谅我在这个领域缺乏知识,这是我一直在修理的事情,但是没有太多的运气......

我有一台服务器,安装了SQL Server 2008 R2,它是默认的isntance,我可以看到SSIS服务已经安装并且当前正在运行.

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

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

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

提前致谢,

戴夫

小智 5

的角色db_ssisadmin,ds_ssisltduser并且db_ssisoperator可以在系统数据库中找到MSDB.请参阅截图#1.

请参阅以下链接以获取以下答案http://social.msdn.microsoft.com:

SSIS包角色 - 将用户分配给角色

回答来自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
Run Code Online (Sandbox Code Playgroud)

希望有所帮助.

截图#1:

1