일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 리포팅서비스
- 윈도우
- replace()
- Excel
- jQuery
- IIS
- 태그를 입력해 주세요.
- MS
- aspnet
- Winform
- 윈폼
- MSSQL
- microsoft
- CONVERT()
- 자바스크립트
- 비주얼스튜디오
- 단축키
- 오라클
- 이클립스
- 마이크로소프트
- javascript
- oracle
- 엑셀
- 프로시저
- ASP
- c#
- attr()
- DataGrid
- windows
- SSRS
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] SQL Server Dependency Cache 설정 본문
Using the SQL Server Cache Dependency
A. Enabling Databases for SQL Server Cache Invalidation
i. aspnet_regsql –S localhost –U UserName –P Password –d DatabaseName –ed
B. Enabling Tables for SQL Server Cache Invalidation
i. aspnet_regsql –S localhost –U UserName –P Password –d DatabaseName –t TableName –et
C. Looking at SQL Server (데이터 베이스 및 테이블 확인)
D. SQL Server Cache Dependency 설정된 테이블 목록이 조회되는 명령어
i. aspnet_regsql –S localhost –U UserName –P Password –d DatabaseName -lt
E. SQL Server Cache Dependency 설정 해제 명령어
i. Database 해제 : aspnet_regsql –S localhost –U UserName –P Password –d DatabaseName –dd
ii. Table 해제 : aspnet_regsql –S localhost –U UserName –P Password –d DatabaseName –t TableName –dt
F. Web.config 설정
<caching>
<sqlCacheDependency enabled="true">
<databases>
<add name="Northwind" connectionStringName="ConnectionString" pollTime="500" />
</databases>
</sqlCacheDependency>
</caching>
--> connectionStringName 은 web.config 에 설정된 ConncetionString값과 동일하게 설정함.
--> pollTime 단위 : milliseconds
G. SQL Server Cache Dependency 페이지 적용 (aspx page)
<%@ OutputCache Duration="3600" VaryByParam="none"
SqlDependency="Northwind:Customers" %>
Or
<%@ OutputCache Duration="3600" VaryByParam="none"
SqlDependency="Northwind:Customers;Northwind:Products" %>
--> SqlDependency = “DatabaseName:TableName”