LoggingOptions.SetColumnFilter(String, DTSEventColumnFilter) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Imposta il filtro a colonna per l'evento specificato.
public:
void SetColumnFilter(System::String ^ eventName, Microsoft::SqlServer::Dts::Runtime::DTSEventColumnFilter columnFilter);
public void SetColumnFilter(string eventName, Microsoft.SqlServer.Dts.Runtime.DTSEventColumnFilter columnFilter);
member this.SetColumnFilter : string * Microsoft.SqlServer.Dts.Runtime.DTSEventColumnFilter -> unit
Public Sub SetColumnFilter (eventName As String, columnFilter As DTSEventColumnFilter)
Parametri
- eventName
- String
Il nome dell'evento le cui colonne vuoi controllare.
- columnFilter
- DTSEventColumnFilter
A DTSEventColumnFilter con valori impostati su vero o falso, a seconda se vuoi includere la colonna (vero) o escludere (falso).
Esempio
Il seguente esempio di codice crea un Package e seleziona un provider di log per esso. L'esempio di codice quindi imposta i campi del DTSEventColumnFilter to true per includere quel campo nel log, oppure false per escludere il campo dal log. Poi SetColumnFilter definisce che i campi con valore di true vengono registrati quando il pacchetto incorre in un OnError evento.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace HttpClientConn
{
class Program
{
static void Main(string[] args)
{
Package pkg = new Package();
LogProvider log1 = pkg.LogProviders.Add("DTS.LogProviderTextFile.1");
pkg.LoggingOptions.SelectedLogProviders.Add(log1);
LoggingOptions lOpts = pkg.LoggingOptions;
DTSEventColumnFilter ecf = new DTSEventColumnFilter();
// Set the detailed information to log when the event occurs.
// This specifies to log the Computer, Operator, and SourceName only.
ecf.Computer = true;
ecf.Operator = true;
ecf.SourceName = true;
ecf.SourceID = false;
ecf.ExecutionID = false;
ecf.MessageText = false;
ecf.DataBytes = false;
// The event is the first parameter, and the columns to log is the enumeration.
lOpts.SetColumnFilter("OnError", ecf);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace HttpClientConn
Class Program
Shared Sub Main(ByVal args() As String)
Dim pkg As Package = New Package()
Dim log1 As LogProvider = pkg.LogProviders.Add("DTS.LogProviderTextFile.1")
pkg.LoggingOptions.SelectedLogProviders.Add(log1)
Dim lOpts As LoggingOptions = pkg.LoggingOptions
Dim ecf As DTSEventColumnFilter = New DTSEventColumnFilter()
' Set the detailed information to log when the event occurs.
' This specifies to log the Computer, Operator, and SourceName only.
ecf.Computer = True
ecf.Operator = True
ecf.SourceName = True
ecf.SourceID = False
ecf.ExecutionID = False
ecf.MessageText = False
ecf.DataBytes = False
' The event is the first parameter, and the columns to log is the enumeration.
lOpts.SetColumnFilter("OnError", ecf)
End Sub
End Class
End Namespace