How do I clean up the SQL Server to get rid of expired SqlDependency objects? After I receive the event from the SqlDepedency object, I need to create a new one before I can get a new event. However, the memory use of the SQL Server process climbs until it runs out of the allowed memory (SQL Server Express). How do I get rid of old queries?

Code:

// Func: RegisterTableListener
using (SqlConnection cn = new SqlConnection(Properties.Settings.Default.DatabseEventConnectionString))
{
if (cmd == null)
{
    cmd = cn.CreateCommand();

    cmd.CommandType = CommandType.Text;
    cmd.CommandText = "SELECT HostName, LastStatus, LastDetails, xml FROM dbo.[SystemTable]";
}

lock (cmd)
{
    cmd.Connection = cn;
    cn.Open();
    cmd.Notification = null;

    //  creates a new dependency for the SqlCommand
    if (dep == null)
        dep = new SqlDependency(cmd);
    //  creates an event handler for the notification of data
    //      changes in the database.
    dep.OnChange += new OnChangeEventHandler(dependency_OnChange);


    using (SqlDataReader reader = cmd.ExecuteReader())
    {
    // code here to read
    }
}
}

// Func dependency_OnChange
//SqlDependency dep = sender as SqlDependency;
dep.OnChange -= dependency_OnChange;
RegisterTableListener();
link|improve this question

33% accept rate
How are you creating the SqlDependency objects? Please post your code. Are you disposing of them properly? – Oded Dec 14 '11 at 21:27
Ill update my comment with code when I get to work tomorrow. Sudo: SqlDependency dep = new SqlDependency(cmd); dep.OnChange += fun; SqlDependency does not implement IDisposable – JeremyK Dec 15 '11 at 0:19
I have updated with code. Even when I run just one instance of a SqlDepdency and call Stop and Start each time, memory climbs. I am clueless as to what is happening. – JeremyK Dec 15 '11 at 14:35
feedback

1 Answer

I'm facing exactly the same problem. I'm creating a data access component that is caching some queries from a SQL Server 2005 database. The cache is invalidated using this shiny new, well not sooo new anymore, SqlDependency approach.

Because this component will be used in ASP.NET as well as in Forms and Windows Service applications, I'm searching for a common way to (internally) call SqlDependency.Stop().

Using a finalizer was my first idea, too, and this didn't work out. My second try was using an event handler for AppDomain.DomainUnload.

After all, this seems to work... But the built-in webserver in VS 2005 will hang for 4-5 minutes with 100% CPU while exeuting SqlDependy.Stop(). In fact, I can't remember of any other process blocking my machine (Pentium M laptop) reproducible so badly that I could hardly bring up Task Manager... I didn't expect this was possible from user-space and even managed code (SQL Server is running on another box.) During this time, even Performance Monitor refuses to log anything, so I can't say if there are a lot of Windows handles or .NET exceptions envolved or whatever...

Calling it from the Application_End event works fine (and takes only a few milliseconds), however this is specific to ASP.NET.

Any ideas

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.