Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > SQL Server > Cache


Search:
What's New - What's Hot
Setting Up SQL Server 7/2000 Dependency Caching     
Total Hits: 211  |  Today: 0Author: asp.net      Rating:  
Read Reviews | Write Review |  Your Rating: 

SQL Server 7/2000 dependency caching requires you to run some setup scripts that build the cache tables ASP.NET will monitor for changes. For this purpose the .NET Framework 2.0 provides a utility called aspnet_regsql.exe.
You do not need to have SQL Server 7/2000 installed in order to follow these steps. The same scripts and legacy dependency caching implementation (next lesson) will work with SQL Express....

SqlDependency based caching of LINQ Queries  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: rusanu      Rating:  
Read Reviews | Write Review |  Your Rating: 

Query Notifications is the SQL Server feature that allows a client to subscribe to notifications that are sent when data in the database changes irrelevant of how that change occurs. I have talked before about how Query Notifications works in the article The Mysterious Notification. This feature was designed specifically for client side cache invalidation: the applications runs a query, gets back the result and stores it in the cache. Whenever the result is changed because data was updated, the ...

The Power of SQL CASE Statements     
Total Hits: 128  |  Today: 0Author: Scott Mitchell      Rating:  
Read Reviews | Write Review |  Your Rating: 

As developers creating data-driven Web applications, we've all written more than our fair share of SQL statements. If I had a nickel for every SELECT statement or UPDATE statement I've written in my six years as a Web developer, I'd be a rich man. Despite the familiarity with SQL that many Web developers have, one of the lesser known SQL tools is the CASE statement. The CASE statement is a wily little fellow that can be added to both the SELECT portion of a SELECT statement as well as the ORDER ...

Report Execution Caching I: SQL Server Management Studio Perspective     
Total Hits: 177  |  Today: 0Author: William Pearson      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is a member of the series MSSQL Server Reporting Services. The series is designed to introduce MSSQL Server Reporting Services (“Reporting Services”), presenting an overview of its features, with tips and techniques for real-world use. For more information on the series in general, please see my initial Database Journal article, A New Paradigm for Enterprise Reporting. For the software components, samples and tools needed to complete the hands-on portion of this article, see BlackBe...

ASP.NET Caching: SQL Cache Dependency With SQL Server 2000     
Total Hits: 54  |  Today: 0Author: Muhammad Mosa      Rating:  
Read Reviews | Write Review |  Your Rating: 

As time passes, the data source may change in response to other actions. However, if your code uses caching, you may remain unaware of the changes and continue using out-of-date information from the cache. To help mitigate this problem, ASP.NET supports cache dependencies. Cache dependencies allow you to make a cached item dependent on another resource so that when that resource changes the cached item is removed automatically....

Introduction into Caching in SQL Server 2000     
Total Hits: 193  |  Today: 0Author: ExtremeExperts.com      Rating:  
Read Reviews | Write Review |  Your Rating: 

This topic has been in my minds for quite some time now. Just thought to get them into a understandable article for public use ... Well, most of the DBA's and many programmers of SQL Server should have heard of the terms data cahe and procedure cahe in conjunction with SQL Server. These are the primary building blocks or parts of the caching mechanism we all talk about. But what is this cache on first place?...

Interact with SQL Server's Data and Procedure Cache     
Total Hits: 259  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

As you work with SQL Server you have probably heard of the terms data cache and procedure cache and may have wondered what exactly a cache was. SQL Server is configure to use a pool of memory of the server and it will allocate the majority of this memory pool to hold both data pages that have been read and the compiled execution plans for all Transact-SQL statements. It is this dynamic pool of memory that is being referred to and the data cache and procedure cache, keep in mind that in versions ...

SQL Server Caching  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Harshit Vyas      Rating:  
Read Reviews | Write Review |  Your Rating: 

Among all of .NET's good features caching is one of my favorites. Caching is really very easy to understand. It's concept is that if we need to fetch the data multiple times from SQL Server or from any file then it will cause a reduction of performance as we are retrieving the same data multiple times from the database or a file so why retrieve the same data again and again we can just store that data in our cache object....

SQL Cache Dependency with SQL Server, LINQ and ASP.NET 3.5  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Malcolm Sheridan      Rating:  
Read Reviews | Write Review |  Your Rating: 

Whenever I think of performance with ASP.NET, the first thing that comes to mind is caching. Simply put caching is an in memory storage of objects that enables the application to read and write data to memory....

Caching in ASP.NET (Part II)  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: Joydip Kanjilal      Rating:  
Read Reviews | Write Review |  Your Rating: 

Caching is an essential feature of ASP.NET that reduces latency and the network traffic by storing frequently used data and pages in the Cache for quick retrieval later; hence greatly boosting the application’s performance. We have had a detailed look at the concepts of Caching in the first part of this series of articles on Caching in ASP.NET. This article presents Data Caching, a feature of ASP.NET that allows you to store your data in the cache memory for faster retrieval. It also discusses t...

SQL Cache Dependency with SQL Server, LINQ and ASP.NET 3.5     
Total Hits: 66  |  Today: 0Author: Malcolm Sheridan      Rating:  
Read Reviews | Write Review |  Your Rating: 

Whenever I think of performance with ASP.NET, the first thing that comes to mind is caching. Simply put caching is an in memory storage of objects that enables the application to read and write data to memory. ASP.NET has several different varieties of caching features. This article will shine a light on a little known feature of ASP.NET 3.5 called SQL Cache Dependency. SQL Cache Dependency has been around since SQL Server 2000, but back then ASP.NET was limited as far as it had a polling mechan...

Analyzing the SQL Server Plan Cache     
Total Hits: 142  |  Today: 0Author: Atif Shehzad      Rating:  
Read Reviews | Write Review |  Your Rating: 

The cache management mechanism plays an important role in performance of any system. Like any reliable DBMS, SQL Server enjoys a sophisticated cache management system for optimized performance without the need for any user intervention. There are ways to add a plan or data to the SQL Server cache or to remove a plan or data from SQL Server cache, but these techniques are only recommended for testing or troubleshooting purposes. Keeping in mind the importance of the cache mechanism, how could one...

Caching in Reporting Services     
Total Hits: 160  |  Today: 0Author: aakanksh      Rating:  
Read Reviews | Write Review |  Your Rating: 

To create this article I have refered a book on reporting services by the name "SQL Server 2005 Reporting Services in Action". The following article is my understanding of the concept of caching in reporting services. Report Server does processing in two stages:
* Execution
* Rendering.
During the execution stage, the Report Server retrieves the required report data, combines the resulting dataset with the report layout information, and generates the report’s intermediate format...

How To Remove a SQL Server Reporting Services (SSRS) Report from Cache Using RS.EXE     
Total Hits: 182  |  Today: 0Author: Ray Barley      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you take advantage of caching reports in SSRS, the cache expiration can be based on a time limit (e.g. 30 minutes) or a schedule (e.g. expire at midnight). We have a situation where we refresh our data warehouse weekly and want to cache reports until the next weekly load. Occasionally we will have to rerun a portion of the weekly data load and when this happens we need to expire all cached reports since the underlying data has changed. We have looked around in SQL Server Management Studio ...


1  2  


Disclaimer - Privacy
© 2002-2012 DevASP.net