Applies to:SQL Server
SSIS Integration Runtime in Azure Data Factory
The WMI Data Reader task runs queries using the Windows Management Instrumentation (WMI) Query Language that returns information from WMI about a computer system. You can use the WMI Data Reader task for the following purposes:
Query the Windows event logs on a local or remote computer and write the information to a file or variable.
Obtain information about the presence, state, or properties of hardware components, and then use this information to determine whether other tasks in the control flow should run.
Get a list of applications and determine what version of each application is installed.
You can configure the WMI Data Reader task in the following ways:
Specify the WMI connection manager to use.
Specify the source of the WQL query. The query can be stored in a task property, or the query can be stored outside the task, in a variable or a file.
Define the format of the WQL query results. The task supports a table, property name/value pair, or property value format.
Specify the destination of the query. The destination can be a variable or a file.
Indicate whether the query destination is overwritten, kept, or appended.
If the source or destination is a file, the WMI Data Reader task uses a File connection manager to connect to the file. For more information, see Flat File Connection Manager.
The WMI Data Reader task uses a WMI connection manager to connect to the server from which it reads WMI information. For more information, see WMI Connection Manager.
WQL Query
WQL is a dialect of SQL with extensions to support WMI event notification and other WMI-specific features. For more information about WQL, see the Windows Management Instrumentation documentation in the MSDN Library.
Note
WMI classes vary between versions of Windows.
The following WQL query returns entries in the Application log event.
SELECT * FROM Win32_NTLogEvent WHERE LogFile = 'Application' AND (SourceName='SQLISService' OR SourceName='SQLISPackage') AND TimeGenerated > '20050117'
The following WQL query returns logical disk information.
SELECT FreeSpace, DeviceId, Size, SystemName, Description FROM Win32_LogicalDisk
The following WQL query returns a list of the quick fix engineering (QFE) updates to the operating system.
Select * FROM Win32_QuickFixEngineering
Custom Logging Messages Available on the WMI Data Reader Task
The following table lists the custom log entries for the WMI Data Reader task. For more information, see Integration Services (SSIS) Logging.
Log entry
Description
WMIDataReaderGettingWMIData
Indicates that the task began to read WMI data.
WMIDataReaderOperation
Reports the WQL query that the task ran.
Configuration of the WMI Data Reader Task
You can set properties programmatically or through SSIS Designer.
For information about the properties that you can set in SSIS Designer, click the following topic:
Use the General page of the WMI Data Reader Task Editor dialog box to name and describe the WMI Data Reader task.
For more information about WMI Query Language (WQL), see the Windows Management Instrumentation topic, Querying with WQL, in the MSDN Library.
Options
Name
Provide a unique name for the WMI Data Reader task. This name is used as the label in the task icon.
Note
Task names must be unique within a package.
Description
Type a description of the WMI Data Reader task.
WMI Data Reader Task Editor (WMI Options Page)
Use the WMI Options page of the WMI Data Reader Task Editor dialog box to specify the source of the Windows Management Instrumentation Query Language (WQL) query and the destination of the query result.
For more information about WMI Query Language (WQL), see the Windows Management Instrumentation topic, Querying with WQL, in the MSDN Library.
Static Options
WMIConnectionName
Select a WMI connection manager in the list, or click <New WMI Connection...> to create a new connection manager.
This learning path covers Windows Management Instrumentation (WMI) and Common Information Model (CIM). These technologies help to access information about a computer. Additionally, both technologies provide local and remote access to management information from the operating system, computer hardware, and installed software.