Views [dbo].[allservercomppoweranalysis]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created12:42:13 PM Sunday, December 05, 2010
Last Modified12:42:13 PM Sunday, December 05, 2010
Columns
Name
userid
orgnm
office
hwsource
region
osname
ossp
osver
ospub
oslanguage
hwuse
fssize
fsfree
instdate
lscandate
hwuuid
hwdom
hwname
hwsn
hwtype
hwmfgr
hwmodel
hwmem
hwbiosmfgr
hwbiosver
hwbiosdate
hwprocmfgr
hwprocmodel
hwproctype
hwproccount
hwprocspeed
hwcpuperf
hwcpuearlyperf
hwcpulateperf
pwrschname
turn_off_monitor_ac
turn_off_hdd_ac
standby_ac
Permissions
TypeActionOwning Principal
GrantDeleteaiadmin
GrantInsertaiadmin
GrantSelectaiadmin
GrantUpdateaiadmin
GrantSelectaipublic
SQL Script
CREATE VIEW [dbo].[allservercomppoweranalysis]
AS
SELECT     userid, orgnm, office, hwsource, region,
                      osname, ossp, osver, ospub, oslanguage,
                      hwuse, fssize, fsfree, instdate, lscandate,
                      hwuuid, hwdom, hwname, hwsn, hwtype,
                      hwmfgr, hwmodel, hwmem, hwbiosmfgr, hwbiosver,
                      hwbiosdate, hwprocmfgr, hwprocmodel, hwproctype,
                      hwproccount, hwprocspeed, hwcpuperf, hwcpuearlyperf, hwcpulateperf, pwrschname, turn_off_monitor_ac,
                      turn_off_hdd_ac, standby_ac                      
FROM         dbo.allcomputerspoweranalysis
WHERE     (hwuse = 'Server')
GO
GRANT SELECT ON  [dbo].[allservercomppoweranalysis] TO [aiadmin]
GRANT INSERT ON  [dbo].[allservercomppoweranalysis] TO [aiadmin]
GRANT DELETE ON  [dbo].[allservercomppoweranalysis] TO [aiadmin]
GRANT UPDATE ON  [dbo].[allservercomppoweranalysis] TO [aiadmin]
GRANT SELECT ON  [dbo].[allservercomppoweranalysis] TO [aipublic]
GO
Uses