table_id - property in ROOT\WMI namespace

table_id in other namespaces

List of classes with table_id local property in ROOT\WMI namespace

propertyClassOrigin
table_idfulltext_query_recompilefulltext_query_recompile
table_idfulltext_reorganize_phase1_destination_fragmentfulltext_reorganize_phase1_destination_fragment
table_idfulltext_reorganize_phase1_source_fragmentfulltext_reorganize_phase1_source_fragment
table_idfulltext_reorganize_progressfulltext_reorganize_progress
table_idfulltext_reorganize_source_fragmentfulltext_reorganize_source_fragment
table_idfulltext_reorganize_startfulltext_reorganize_start
table_idfulltext_semantic_document_languagefulltext_semantic_document_language
table_idglm_acquire_table_lock_exceptionglm_acquire_table_lock_exception
table_idglm_release_table_lock_exceptionglm_release_table_lock_exception
table_idquery_rpc_server_collection_cache_hitquery_rpc_server_collection_cache_hit
table_idquery_rpc_server_collection_cache_hit_no_keyquery_rpc_server_collection_cache_hit_no_key
table_idquery_rpc_server_collection_cache_insertquery_rpc_server_collection_cache_insert
table_idquery_rpc_server_collection_cache_missquery_rpc_server_collection_cache_miss
table_idquery_rpc_server_collection_cache_removequery_rpc_server_collection_cache_remove
table_idquery_rpc_server_collection_createquery_rpc_server_collection_create
table_idquery_rpc_server_runtime_cache_hitquery_rpc_server_runtime_cache_hit
table_idquery_rpc_server_runtime_cache_insertquery_rpc_server_runtime_cache_insert
table_idquery_rpc_server_runtime_cache_missquery_rpc_server_runtime_cache_miss
table_idquery_rpc_server_runtime_cache_removequery_rpc_server_runtime_cache_remove
table_idquery_rpc_server_runtime_createquery_rpc_server_runtime_create
table_idselective_xml_index_no_compatible_sql_typeselective_xml_index_no_compatible_sql_type
table_idselective_xml_index_no_compatible_xsd_typesselective_xml_index_no_compatible_xsd_types
table_idselective_xml_index_path_not_indexedselective_xml_index_path_not_indexed
table_idselective_xml_index_path_not_supportedselective_xml_index_path_not_supported

Code samples for table_id property

Get instance of WMI class using GetObject, table_id property of query_rpc_server_collection_cache_miss

Short VBS code - get a single specified instance of query_rpc_server_collection_cache_miss class or get a default unnamed instance (singleton) of the class, using one single command GetObject with exact path of the wmi object.

'https://wutils.com/wmi/
Dim wmiObject
Set wmiObject = GetObject( _
 "WINMGMTS:\\.\ROOT\WMI:" + _
 "query_rpc_server_collection_cache_miss.PropertyName=""SomeText""")
Wscript.Echo wmiObject.table_id 'or other property name, see properties
See more VBS samples of query_rpc_server_collection_cache_miss class

WMI query - sample windows WQL with C#, table_id property of query_rpc_server_collection_cache_miss

Get a specified instance of query_rpc_server_collection_cache_miss by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this c# sample code.
See in another language: VBScript, VB.Net.
//https://wutils.com/wmi/

//Project -> Add reference -> System.Management
//using System.Management;

//create a management scope object
ManagementScope scope = new ManagementScope("\\\\.\\ROOT\\WMI");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM query_rpc_server_collection_cache_miss Where PropertyName=\"SomeText\"");

//create object searcher
ManagementObjectSearcher searcher =
                        new ManagementObjectSearcher(scope, query);

//get a collection of WMI objects
ManagementObjectCollection queryCollection = searcher.Get();

//enumerate the collection.
foreach (ManagementObject m in queryCollection) 
{
  // access properties of the WMI object
  Console.WriteLine("table_id : {0}", m["table_id"]);
  
}

WMI query - sample windows WQL with VB.Net, table_id property of query_rpc_server_collection_cache_miss

Get a specified instance of query_rpc_server_collection_cache_miss by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this VB.Net sample code.
See in another language: VBScript, C#
'Project -> Add reference -> System.Management
'Imports System.Management

'Get the namespace management scope
Dim Scope As New ManagementScope("\\.\ROOT\WMI")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM query_rpc_server_collection_cache_miss Where PropertyName="SomeText"")

'Create object searcher
Dim Searcher As New ManagementObjectSearcher(Scope, Query)

'Get a collection of WMI objects
Dim queryCollection As ManagementObjectCollection = Searcher.Get

'Enumerate wmi object 
For Each mObject As ManagementObject In queryCollection
  'write out some property value
  Console.WriteLine("table_id : {0}", mObject("table_id"))
Next
comments powered by Disqus
WUtils.com