BinaryData - property in ROOT\Microsoft\SqlServer\ServerEvents\MSSQLSERVER namespace

BinaryData in other namespaces

List of classes with BinaryData local property in ROOT\Microsoft\SqlServer\ServerEvents\MSSQLSERVER namespace

propertyClassOrigin
BinaryDataAUDIT_DATABASE_OBJECT_ACCESS_EVENTAUDIT_DATABASE_OBJECT_ACCESS_EVENT
BinaryDataAUDIT_DATABASE_OBJECT_GDR_EVENTAUDIT_DATABASE_OBJECT_GDR_EVENT
BinaryDataAUDIT_DATABASE_PRINCIPAL_IMPERSONATION_EVENTAUDIT_DATABASE_PRINCIPAL_IMPERSONATION_EVENT
BinaryDataAUDIT_DATABASE_SCOPE_GDR_EVENTAUDIT_DATABASE_SCOPE_GDR_EVENT
BinaryDataAUDIT_LOGINAUDIT_LOGIN
BinaryDataAUDIT_SCHEMA_OBJECT_ACCESS_EVENTAUDIT_SCHEMA_OBJECT_ACCESS_EVENT
BinaryDataAUDIT_SCHEMA_OBJECT_GDR_EVENTAUDIT_SCHEMA_OBJECT_GDR_EVENT
BinaryDataAUDIT_SERVER_OBJECT_GDR_EVENTAUDIT_SERVER_OBJECT_GDR_EVENT
BinaryDataAUDIT_SERVER_PRINCIPAL_IMPERSONATION_EVENTAUDIT_SERVER_PRINCIPAL_IMPERSONATION_EVENT
BinaryDataAUDIT_SERVER_SCOPE_GDR_EVENTAUDIT_SERVER_SCOPE_GDR_EVENT
BinaryDataEVENTLOGEVENTLOG
BinaryDataLOCK_DEADLOCKLOCK_DEADLOCK
BinaryDataLOCK_DEADLOCK_CHAINLOCK_DEADLOCK_CHAIN
BinaryDataTRC_PERFORMANCETRC_PERFORMANCE
BinaryDataTRC_USER_CONFIGURABLETRC_USER_CONFIGURABLE

Code samples for BinaryData property

The class TRC_PERFORMANCE is abstract and serves only as a base for new classes. You cannot create instances of abstract class, see derived classes.

Get a Class as object

Short VB Script code to get the abstract class TRC_PERFORMANCE.
See in another language: C#, VB.Net.
'https://wutils.com/wmi/
Dim wmiClass, oProperty
Set wmiClass = GetObject( _
 "WINMGMTS:\\.\ROOT\Microsoft\SqlServer\ServerEvents\MSSQLSERVER:" + _
 "TRC_PERFORMANCE")

'get some class property 
Wscript.Echo wmiClass.properties_("BinaryData").Origin 'or other property name, see properties

'Check if the class is singleton
Wscript.Echo wmiClass.Path_.IsSingleton

'Get number of methods in the class
Wscript.Echo wmiClass.Methods_.Count

'List class properties
For Each oProperty In wmiClass.properties_
	'get property name and origin. Property value in the class is null, of course.
	Wscript.Echo oProperty.Name, oProperty.Origin, oProperty.Value
Next 

InstancesOf

List of all instances, wmi class TRC_PERFORMANCE.
'https://wutils.com/wmi/
Dim oWMI, Instances, Instance

'Get base WMI object, "." means computer name (local)
Set oWMI = GetObject("WINMGMTS:\\.\ROOT\Microsoft\SqlServer\ServerEvents\MSSQLSERVER")

'Get instances of TRC_PERFORMANCE - all instances of this class and derived classes 
Set Instances = oWMI.InstancesOf("TRC_PERFORMANCE")


'Enumerate instances  
For Each Instance In Instances 
  'Do something with the instance
  Wscript.Echo Instance.BinaryData 'or other property name
Next 'Instance
comments powered by Disqus
WUtils.com