The sqlcachedependency tag has no wiki summary.
0
votes
0answers
27 views
Asp.net LinqToSql with SqlCacheDependency - Cache is getting invalidated correctly, BUT fail to reinitialize cache after the invalidation
I am trying to use a SQL dependency to invalidate the Linq query cache upon changes to the database. I have configured the dependency correctly and it seems that the cache value is getting invalidated ...
0
votes
0answers
63 views
How to use SqlCacheDependency with SqlCommand and MVC
I have SqlCacheDependency working with an MVC project but I'm still a bit confused on how to get it working with a SqlCommand. My goal is for the dependency to be on a couple fields changing within a ...
1
vote
0answers
45 views
sqlDatasource and sqlCacheDependancy
this is my sqldatasource:
<asp:SqlDataSource ID="SqlDataSource1" runat="server" CacheDuration="1"
CacheKeyDependency="Test_Tbl_Test" ConnectionString="<%$
...
0
votes
0answers
67 views
SqlCacheDependency via Service Broker Notifications - SELECT command GOOD MANNERS
Should the Select for Service Broker Notifications in SqlCacheDependency Approach look so - I mean the SET options:
"SET ANSI_NULLS ON;
SET ANSI_PADDING ON;
SET ANSI_WARNINGS ON;
SET ...
0
votes
1answer
83 views
SqlCacheDependency via Service Broker Notifications - SELECT sensitive ONLY on particular columns
Is it possible to define a Notification on SELECT, but in that way: the Broker would reset Cache only if columns written in select has changed. So Column Sensitive approach. I don't want the cache ...
0
votes
1answer
134 views
SqlCacheDependency via Service Broker Notification in a WebEdition of SqlServer 2008 R2
I would appreciate Your help:
We are planing to buy SQL Server 2008 R2 Web Edition (we must this version),
however we would also like to use a functionality of Service Broker for SqlCacheDependency ...
0
votes
0answers
30 views
What is the exact role of “AspNet_SqlCacheTablesForChangeNotification”
We have a .NET 4.5 Azure Webrole with Azure (colocated) Caching enabled. We use Entity Framework 5.0 talking to an Azure SQL database.
We did some cleanup on our staging/testing and I noticed that ...
0
votes
0answers
143 views
Implement SQLCacheDependency with WCF
I have a requirement to check the database for frequent interval of time to see if there any new records or Updated records for a particular table.
I have background process which does this ...
5
votes
2answers
608 views
SqlCacheDependency/SqlDependency and columns
I am using the following code to cache with dependency on change of "People" table's, "Name" column. However, in a row if some other column such as Address column changes then also dependency fires ...
0
votes
1answer
69 views
SqlCacheDependency problems when upload on server
I used SqlCacheDependency in my website and it works on localhost without problem. but when Upload it on server and restore my database it has following error:
The SQL Server Service Broker for the ...
0
votes
1answer
67 views
ASP.NET Caching suggestion
I have an ASP.NET website for which I want to implement ASP.NET caching. There is a master list of items that only master users can see when they login. All other users only see a subset of the master ...
0
votes
1answer
149 views
aspnet_regsql SQLCACHEDEPENDENCY
I have created a datatbase "testschema" and schema called "MySchema". I have
created a table "MySchema.table1" in the database. I am trying to create sql
cache dependancy on table using aspnet_regsql ...
0
votes
1answer
165 views
In ASP.Net web farm is database dependent Caching a good approach?
I was looking at using data caching with database dependency for a web farmed ASP.Net app. So each web server in the web farm would automatically refresh its Cache value as soon as the database value ...
0
votes
1answer
377 views
Enterprise Library SqlCacheDependency
I am working with Enterprise Library Application Block in my application and need to use SqlCacheDependency, but Caching block does not have SqlDependency Expiration available, Tried to search, found ...
0
votes
1answer
298 views
SqlNotificationEvent notify multiple times for even single insert in database
SqlNotificationEvent notify multiple times for even single insert in database.
Even for single insert/update/delete in table the event notify for several time with e.Type == ...
1
vote
1answer
556 views
can the asp page be auto refreshed trigger by database change using sqlCacheDependency
I've spent 2 whole weeks in googling some working sample on this. I was almost kind of knocking my head against concrete wall....deeply suffering until now.
Ok, I have a simple web page to display ...
0
votes
2answers
195 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
299 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
2answers
335 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
524 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();
...
6
votes
2answers
233 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 ...
0
votes
1answer
198 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 ...
11
votes
2answers
568 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 ...
0
votes
1answer
428 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
1answer
61 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
210 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 ...
1
vote
2answers
180 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 ...
2
votes
1answer
229 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
...
0
votes
2answers
253 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> ...
3
votes
1answer
567 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> ...
0
votes
1answer
315 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 ...
1
vote
1answer
535 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
571 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 ...
0
votes
1answer
1k 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
1answer
115 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
187 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 - ...
3
votes
1answer
1k 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 ...
1
vote
1answer
654 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 ...
1
vote
0answers
189 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 ...
1
vote
2answers
519 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
1answer
217 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
535 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 ...
2
votes
2answers
271 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 ...
0
votes
1answer
116 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
299 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
185 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
299 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
362 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 ...
8
votes
2answers
11k 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 ...
0
votes
2answers
250 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 ...