다음을 통해 공유


SqlCacheDependencyAdmin.DisableTableForNotifications 메서드

정의

SQL Server 데이터베이스 테이블이나 데이터베이스 테이블 배열에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

오버로드

DisableTableForNotifications(String, String)

SQL Server 데이터베이스 테이블에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

DisableTableForNotifications(String, String[])

SQL Server 데이터베이스 테이블 배열에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

DisableTableForNotifications(String, String)

SQL Server 데이터베이스 테이블에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

public:
 static void DisableTableForNotifications(System::String ^ connectionString, System::String ^ table);
public static void DisableTableForNotifications (string connectionString, string table);
static member DisableTableForNotifications : string * string -> unit
Public Shared Sub DisableTableForNotifications (connectionString As String, table As String)

매개 변수

connectionString
String

SQL Server 데이터베이스에 연결할 때 사용되는 연결 문자열입니다.

table
String

변경 알림을 비활성화할 데이터베이스 테이블입니다.

예외

데이터베이스의 변경 알림이 활성화되지 않은 경우

table가 빈 문자열("")인 경우

table이(가) null인 경우

데이터베이스에 연결할 수 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스 연결 권한이 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스에 대한 알림을 사용하지 않을 권한이 없는 경우

예제

다음 코드 예제에서는 사용 하지 않도록 설정 연결 문자열에 지정 된 테이블에 대 한 알림 변경 MyConnectionString합니다.

예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 SqlCacheDependencyAdmin 클래스 개요 항목입니다.

SqlCacheDependencyAdmin.EnableTableForNotifications(
  ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString,
  tableName.Text);
SqlCacheDependencyAdmin.EnableTableForNotifications( _
  ConfigurationManager.ConnectionStrings("MyConnectionString").ConnectionString, _
  tableName.Text)

설명

DisableTableForNotifications 메서드를 사용 하지 않도록 설정에서 지정한 테이블에 대 한 알림 변경를 table 지정 된 데이터베이스에 있어야 하는 매개 변수는 connectionString 매개 변수.

사용 하면 합니다 DisableTableForNotifications 사용 하지 않도록 설정 하는 방법 변경 테이블에 대 한 알림 중 하나를 사용 해야 합니다는 EnableTableForNotifications 변경 알림을 다시 사용 하도록 설정 하려는 경우 오버 로드 합니다.

적용 대상

DisableTableForNotifications(String, String[])

SQL Server 데이터베이스 테이블 배열에 대해 SqlCacheDependency 변경 알림을 비활성화합니다.

public:
 static void DisableTableForNotifications(System::String ^ connectionString, cli::array <System::String ^> ^ tables);
public static void DisableTableForNotifications (string connectionString, string[] tables);
static member DisableTableForNotifications : string * string[] -> unit
Public Shared Sub DisableTableForNotifications (connectionString As String, tables As String())

매개 변수

connectionString
String

SQL Server 데이터베이스에 연결할 때 사용되는 연결 문자열입니다.

tables
String[]

변경 알림을 비활성화할 SQL Server 데이터베이스 테이블 배열입니다.

예외

데이터베이스의 변경 알림이 활성화되지 않은 경우

tables 매개 변수 값 중 하나가 null인 경우

또는

tables 매개 변수 값 중 하나가 빈 문자열("")인 경우

tables이(가) null인 경우

데이터베이스에 연결할 수 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스 연결 권한이 없는 경우

또는

ASP.NET 애플리케이션의 보안 컨텍스트에 데이터베이스에 대한 알림을 사용하지 않을 권한이 없는 경우

설명

합니다 DisableTableForNotifications 에 지정 된 테이블에서 변경 알림을 메서드 제거는 tables 매개 변수입니다. 이러한 테이블에 지정 된 데이터베이스에 있어야 합니다 connectionString 매개 변수입니다.

사용 하면 합니다 DisableTableForNotifications 사용 하지 않도록 설정 하는 방법 변경 테이블의 목록에 대 한 알림 중 하나를 사용 해야 합니다는 EnableTableForNotifications 변경 알림을 다시 사용 하도록 설정 하려는 경우 오버 로드 합니다.

적용 대상