How to: Grant Database Permissions to a Non-Hosted Event Provider
This procedure shows how to grant database permissions to the account used by a non-hosted event provider. The account used can be either a Microsoft Windows account or a SQL Server Login account. This procedure assumes that the account has already been granted permissions to log in to SQL Server.
Note
The default instance database name is instanceNameNSMain. The default application database name is instanceName + ApplicationName. However, in SQL Server 2005, you can specify the database name in the instance configuration and application definition.
To grant database permissions to the non-hosted event provider account
In SQL Server Management Studio Object Explorer, expand Databases.
For the instance database and each application database, do the following:
- Expand the database.
- Right-click the Security folder, point to New, and then select User.
- In the User name box, enter a name for the database user.
- In the Login name box, enter the name of the login.
The login name must exactly match the name of an existing login in the instance of SQL Server. Click Search to search for the login name. - In the Database role membership box, select NSEventProvider.
Example
The following Transact-SQL code shows how to grant database permissions to the account used by a non-hosted event provider:
USE [InstanceNameNSMain];
CREATE USER [MyLogin];
EXEC sp_addrolemember N'NSEventProvider', N'MyLogin';
USE [InstanceNameAppName];
CREATE USER [MyLogin];
EXEC sp_addrolemember N'NSEventProvider', N'MyLogin';
See Also
Concepts
Configuring SQL Server Permissions for an Instance of Notification Services
Securing Notification Services
Other Resources
Managing Security How-to Topics (Notification Services)