-- This query gets serial nos and retrieve information as machine name, user name and respective serial no.
SELECT a.name0, a.user_name0,
b.serialnumber0 from v_r_system a,
v_GS_PC_BIOS b where a.resourceid=b.resourceid
and b.serialnumber0 in ('x', 'y')
-- x,y are serial nos.
-- you can specify as much serial nos you want.
No comments:
Post a Comment