Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
3k views

Performance questions for SQL Cache Dependency

I'm working on a project where we are thinking of using SQLCacheDependency with SQL Server 2005/2008 and we are wondering how this will affect the performance of the system. So we are wondering about ...
11
votes
2answers
147 views

Why does my SqlCacheDependency HasChanged come back false but almost immediately after changes to true?

I cannot figure out why the HasChanged value of my SqlCacheDependency object is coming back originally from the command execution as false, but somewhere almost immediately after it comes back from ...
6
votes
2answers
109 views

Is Caching in C# the right approach for me?

I've tried to read up on Caching in ASP.NET and still have a few questions. When using a Sql Cache Dependency ... I know that you can specify which tables will be monitored but if a change happens ...
5
votes
3answers
934 views

Extending ASP.NET data cache to be shared across web farm

I have an ASP.NET application that makes extensive use of ASP.NET cache API for caching commonly-used data. In addition, I am using polling-based sql cache dependency to track expiration. The ...
3
votes
1answer
117 views

SqlCacheDependency on Views and Procedures

I want to use SqlCacheDependency with the views and procedures. I am using Linq to Sql. The code i am currently using is valid only if you are using a Single Table: public static List<T> ...
3
votes
3answers
498 views

Clear the cache at a specific time in ASP.NET 2.0

So I have a process which runs at midnight which sets a start and end point for a flash object. This only needs to run once a day, so I'm obviously caching the result set. However, the problem I'm ...
2
votes
1answer
69 views

Column Specific SqlCacheDependency in ASP.NET

I want to have a column specific SqlCacheDependency. The Row Specific SqlCacheDependency is valid but i dont know how can i make Column Specific SqlCacheDependency Example: The query: SELECT ...
2
votes
1answer
151 views

How does a SqlCacheDependency know when to communicate back to any listeners when data in a table changes?

I have been doing some research and I can see most of the plumbing for this system however I'm not sure how sql server knows when to fire a message back to any listeners (applications) when data in a ...
2
votes
2answers
126 views

Global settings for ASP.NET website

I'm trying to create a sort of global settings for a website and store this data on the database, however I keep thinking that may not be very efficient as these settings will have to be read on every ...
2
votes
2answers
3k views

Enabling Service Broker in SQL Server 2008

I am integrating SqlCacheDependency to use in my LinqToSQL datacontext. I am using an extension class for Linq querys found here - http://code.msdn.microsoft.com/linqtosqlcache I have wired up the ...
2
votes
1answer
379 views

how to use sqlcachedependency for each user in asp.net mvc

I have an application in asp.net mvc (C#), in which each user have different products sharing a common table separated by user id. I need to implement SqlCacheDependency for each user's products. ...
2
votes
1answer
484 views

ASP.NET set cache dependency with a SqlCommand

Is this an effective way to set the cache item dependent on the query? HttpRuntime.Cache.Insert( "ListLanguages", list, new ...
1
vote
2answers
76 views

SqlCacheDependency with LINQ2SQL (Repository Pattern)

I am using L2S Repository pattern in my ASP.Net 3.5 web app. But I am not quite satisfied with the performance as experienced on the live. I searched google and came across SQL Caching using ...
1
vote
1answer
77 views

auto refreshing page when data in database is changed

my page is using sqlcachedependency. so the page read information from cache until data in database is changed but i need the page was auto refresh when data is changed. How can i do that?
1
vote
1answer
159 views

SqlDependency.Start An attempt to attach an auto-named database for file failed

iv'e got copy of NORTHWND.mdf along with NORTHWND.LOG in my App_Data folder MY CONNECTION STRING : <add name="northwind_connection" connectionString="Data ...
1
vote
1answer
352 views

Delete HttpRuntime.Cache items from an other application

I have an admin application in which I manipulate my objects in the db, and a public asp.net mvc application which is mostly for viewing these objects. I have implemented a simple caching for a few ...
1
vote
0answers
93 views

SQLServer OutputCache objects deleted or not created

In this project I'm using MVC-3, with output cache attributes and the appropriate references in the web.config and, hopefully, the global.asax (below). I'm running production from a shared hosting ...
1
vote
1answer
203 views

Cache invalidation notification SqlCacheDependency

I am trying to create SQL cache dependency for some reference data in my ASP.NET application (ASP.NET 3.5, SQL 2008). I have enabled sql caching for my database and a couple of tables using ...
1
vote
3answers
731 views

Why does stored procedure invalidate SQL Cache Dependency?

After many hours, I finally realize that I am working correctly with the Cache object in my ASP.NET application but my stored procedures stops it from working correctly. This stored procedure works ...
0
votes
0answers
11 views

ASP.NET Output Caching vs ASP.NET Object Caching

Can you please help me with deciding which one of the following scenarios will work the best. I have 3 user controls. Each control needs to generate content based on the results of SQL Server query, ...
0
votes
1answer
23 views

Caching a SQL Server Query with Multiple Result Sets

I am trying to cache a SQL Stored Procedure with multiple results sets by making use of the SQLCacheDependency class. The first three queries in the stored procedure are queries that are general to ...
0
votes
0answers
19 views

Determine if SqlDependency.Start(connectionstring) has been called in current project?

Our applications use a lot of shared components. Some of them have no need for caching, for example, Windows Services which process unmailed emails. You'd never cache that result set... Problem is, ...
0
votes
2answers
63 views

SqlCacheDependency not working when using SqlCommand for cache-key

This code works fine, it invalidates the data whenever it is changed in the database: AggregateCacheDependency aggDep = new AggregateCacheDependency(); ...
0
votes
1answer
31 views

Sql Server not creating subscription for simple select query using SqlCacheDependency

I was trying to implement a simple SQLCacheDependency to cache objects in my asp.net application. After breaking my head for quite a while, I seem to have hit a dead end and thought an outside view ...
0
votes
1answer
55 views

SqlCacheDependency with SqlCommand not working

Having problems with implementing very basic SqlCacheDependency prototype. Have tried this with a sproc but now I'm down to straight command execution. public SqlCommand GetReadCommand(int ID) ...
0
votes
0answers
18 views

Do I need to specify the same query for SqlCacheDependency which I used to query the db?

Lets say I use a query as below to get a large result set. Select UserID,FirstName, LastName, City, Age from UserInfo where DateDiff(d,GetDate,LastActiveOn) > 180 Now, I want to cache each ...
0
votes
1answer
39 views

SqlCacheDependency does not seem to have OnChange event?

I am trying to Cache a few data objects, which are used very frequently and thus are queried very often loading the db server. However these do not change that frequently, making them good candidates ...
0
votes
2answers
68 views

Find underlying tables of views using Linq to Entity to make Aggregate Dependencies

I have a function: public static List<T> EntityCache<T>(this System.Linq.IQueryable<T> q, ObjectContext dc, string CacheId) { try { List<T> ...
0
votes
1answer
60 views

Effect on SqlCacheDependency and Broker Service when database schema change

I am creating an application with Sql cached dependency. For this i enabled the broker by Alter database test ENABLE_BROKER After i add two new tables to the database. But i found that i am not ...
0
votes
0answers
172 views

Getting SQL cache dependency to work on SQL Server 2008 R2 Express

I have a problem getting sqlCacheDependecy to work in my web application. The web app is hosted on a dedicated server (Windows Server 2008 R2) and the SQL server is Microsoft SQL Server 2008 R2 ...
0
votes
0answers
48 views

Data dependency caching and cache not initialized

This is my code: public DataTable SqlDependency() { DataTable dt = null; if (HttpContext.Current.Cache[str] == null) { string cstr = ...
0
votes
0answers
26 views

LinqToSQL Cache Dependency not updating

I am having an issue using SQLCacheDependency with LinqToSQL. I followed the two posts below and used the same approach alternatively mentioned in both. ...
0
votes
1answer
355 views

High CPU Usage on SQL Server Caused by SqlCacheDependency

We are experiencing an issue where our sql server where cpu usage jumps to and remains at 100% until the site is taken down and restarted. We have gone through the code and optimized everything we ...
0
votes
0answers
18 views

Can I reset the ChangeId in Cache Table for Change Notification

What happens if I reset the changeId value in the table AspNet_SqlCacheTablesForChangeNotification One of the rows is currently maxed out at 2.x billion, and our updates are failing. I tried ...
0
votes
1answer
78 views

SqlCacheDependency & custom table change

We are using a third party who's own implementation of caching has very poor performance rates when we measure making requests via their API and their database. Their database (Sql Sever 2005 - ...
0
votes
1answer
208 views

NHibernate + SysCache2 + SqlCacheDependency - Cache not invalidating in application

I have a basic MVC application that is using NHibernate for OR/M and data access, SysCache2 for the second-level cache in NHibernate, and SqlCacheDependency for the underlying cache invalidation ...
0
votes
0answers
83 views

A few questions about SqlDependency/SqlCacheDependency

I have a few questions that i would like to clear Can u use SqlDependency or SqlCacheDependency to find out which particular data item has changed in the database? Right now , i am using ...
0
votes
0answers
118 views

SQL Cache Dependency using asp.net 4.0 (ADO.NET)?

Can somebody guide me for SQL Cache Dependency using asp.net 4.0 (ADO.NET)? Searched on net.. i could fine with LINQ to SQL. HERE Please guide me in ASP.NET 4.0.
0
votes
0answers
126 views

SQL Cache dependency and transactions

I'm using Sql cache dependency on several places on my site. I started opening a transaction on begin request so I have a transaction alive for the whole request (NHibernate Open Session in View ...
0
votes
0answers
93 views

SqlCacheDependency.HasChanged - performance penalty?

I'd like to understand what happens 'under the hood' when i access the SqlCacheDependency.HasChanged property. Is this a 'costly' operation ? does it access the data base every time i hit that ...
0
votes
1answer
76 views

SP cache plan not generated

There is something weird in this statement COALESCE(@param_ids + ',', '') @param_ids are passed in as param and it is @param_ids VARCHAR(MAX) Any idea why the SQL-Server could not able to produce a ...
0
votes
2answers
158 views

Unable to invalidate the cache dependent on sql query

I am trying to invalidate the cache based on the change in the rows of the database. I have achieved success while doing the same thing with linq with the same database and table but Iam not able to ...
0
votes
1answer
101 views

PHP version of ASP.NET's SqlCacheDependency

I find the SqlCacheDependency very useful when writing C# ASP.NET applications, and would love to use something similar in my PHP applications. Can anyone suggest something? SqlCacheDependency caches ...
0
votes
2answers
183 views

Caching paged LINQ results without using Skip() or Take()

I am using LINQ for paging data in my website. I am currently using Skip() and Take() to perform the paging. Now I want to cache the data using cache dependencies so that the the cache will invalidate ...
0
votes
0answers
208 views

Asp.net sql cache dependency programmatically configuration

I've a question regarding SqlCacheDependency configuration. Every resource I've read requires the developer to define the polled databases into web.config. This is not a good scenario for our ...
0
votes
2answers
175 views

Can We use SqlCacheDependency with a product not containing ASP.net part?

Is SQLCacheDependency used in context of ASP.net or can it be used for a project of .net only. Rather tahn using ASP.net i am receiving request by listening on a port.I want to store data for my ...
0
votes
0answers
141 views

Caching and cache invalidation in user controls?

HI, In our .aspx pages we have many user controls. each user control executes a sql query. The caching mechanism to be followed is to fragment cache each user control on the page and add the query ...
0
votes
1answer
591 views

sql server 2008 - sqlcachedependency without trigger?

I am so puzzled. I am using this open-source snippet. I have a table without any triggers in SQL Server, and yet the SQLCacheDependency is working fine. I thought you needed triggers on the table ...
0
votes
4answers
2k views

SQL Cache Dependency not working with Stored Procedure

I can't get SqlCacheDependency to work with a simple stored proc (SQL Server 2008): create proc dbo.spGetPeteTest as set ANSI_NULLS ON set ANSI_PADDING ON set ANSI_WARNINGS ON set ...
0
votes
1answer
237 views

SQLCacheDependency with SqlCommand never null

I need to implement cache dependency on a sql select command that selects one value (latest modified date of some rows). My problem is that although I update the content and when I run the query ...

1 2