⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scope.query

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻 QUERY
字号:
####################################### Scope testing queries.             #######################################select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_ComputerSystem::Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = CIM_ComputerSystem.CIM_ComputerSystem::Descriptionselect * from CIM_ComputerSystem where CIM_ComputerSystem::Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = CIMComputerSystem::Descriptionselect * from CIM_ComputerSystem where Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = Descriptionselect * from CIM_System where CIM_ComputerSystem::Description = 'Computer System'#Causes an interesting BUG: changes chain to CIM_System.CIM_ComputerSystem.CIMComputerSystem::Descriptionselect * from CIM_System where CIM_ComputerSystem.CIM_ComputerSystem::Description = 'Computer System'select * from CIM_System where CIM_System::Description = 'Computer System'select * from CIM_System where CIM_System.CIM_ComputerSystem::Description = 'Computer System'#Causes an interesting BUG: changes chain to CIM_System.CIM_ComputerSystem.CIMComputerSystem::Descriptionselect * from CIM_System where CIM_EnabledLogicalElement::CIM_System.Description = 'Computer System'#Validate should be catching this invalid query.select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_OperatingSystem::Description = 'Computer System'#Validate should be catching this invalid query.select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_OperatingSystem::OSType = 4select * from CIM_ComputerSystem where CIM_System::Description = 'Computer System'

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -