Reputation: 47763
this is a new staging server with SQL 2008. I'm not famliary with SSIS that much so trying to deploy a couple packages. So I do the following in BIDS..which is probably typical:
Try to click now the Package Path and get this:
An OLE DB error 0x80040E09 (The EXECUTE permission was denied on the object 'sp_ssis_listpackages', database 'msdb', schema 'dbo'.) occurred while enumerating packages. A SQL statement was issued and failed.
ADDITIONAL INFORMATION:
An OLE DB error 0x80040E09 (The EXECUTE permission was denied on the object 'sp_ssis_listpackages', database 'msdb', schema 'dbo'.) occurred while enumerating packages. A SQL statement was issued and failed.
BUTTONS:
So what do I do? How do I essentially run this as an administrator to get past this stupid elevated rights security error?
Upvotes: 2
Views: 3519
Reputation: 3513
You should add your windows / sql account to sysadmin
role.
In SQL Server Management Studio, go to Security -> Server Roles and double click sysadmin
. Add your login and it should work when you try again.
Upvotes: 1