SQLDependency Caching no funciona

Estoy tratando de usarSQLDependency Caching con notificaciones de consulta en miASP.NET solicitud. Seguíestos pasos para configurar SQLDependency Caching. Pude configurar eldb exitosamente. Sin embargo, cuando ejecuto mi aplicación, aparece el siguiente error.

Cannot find the specified user 'owner'.
Cannot find the queue
SqlQueryNotificationService-6c3ae823-a678-4ed2-8b97-561b5f2561ee', 
because it does not exist or you do not have permission.
Invalid object name
SqlQueryNotificationService-6c3ae823-a678-4ed2-8b97-561b5f2561ee'.

CódigoGlobal.asax

void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
        System.Data.SqlClient.SqlDependency.Start(ConfigurationManager.ConnectionStrings["McdConn"].ToString());

    }

Intenté buscar la solución en Google pero no pude obtener ayuda.

Puede alguien ayudarme con esto?

¿Me estoy perdiendo de algo?

Respuestas a la pregunta(1)

Su respuesta a la pregunta