Error while getting next item from queue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-18 02:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-18 02:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-18 03:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-18 11:26 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
14-01-19 01:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
14-01-19 01:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
14-09-20 02:35 PM
The EXECUTE permission was denied on the object 'usp_getnextcase', database '...', schema 'dbo' realted user has not permission to run "usp_getnextcase" stored procedure in '...' database. If you are database admin then you need to give permission to the user performing the execution like below.
use [...]
GO
GRANT EXECUTE ON [dbo].[usp_getnextcase] TO [UserYY]
You can customize the above query by changing the use [...] and [UserYY] as you need.
The database administrators recommend other solution to create a new database role like db_executor. This is explained on the following blog source.
Thnx
------------------------------
Enco Trio
------------------------------
