Link to home
Start Free TrialLog in
Avatar of btptech1
btptech1Flag for United States of America

asked on

Exporting perfmon logs into SQL 2008

Need detail manual how to export perfmon into SQL 2008 to the reporting.
Please, help
Avatar of btptech1
btptech1
Flag of United States of America image

ASKER

Im sorry. I want to export  *.blg file into SQL server 2008. I need a very detail manual because Im not familiar at all with SQL. I want to generate charts that show Exchange server Process, Memory, Hard Disk utilization, etc.
Thanks in advance.
ASKER CERTIFIED SOLUTION
Avatar of brejk
brejk
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you already have the counters in sql server


SELECT* FROM sys.dm_os_performance_counters
more
SQL SERVER – Performance Counters from System ViewsSQL SERVER – Performance Counters from System Views
http://blog.sqlauthority.com/2009/06/10/sql-server-performance-counters-from-system-views-by-kevin-mckenna/


also you can check
 http://www.mssqltips.com/tip.asp?tip=1722