Sorry I am not a DBA so bear with me. I wanted to get a better understanding of the ratio of reads to writes in our archiecture. The best to get this is at the database. We are using SQL Server 2008. Is there anyway to get this without impacting performance and to get smart summaries? For example, the daily read / write ratio?
Many thanks.

sys.dm_io_virtual_file_stats. For logical reads not sure. – Martin Smith Mar 15 '12 at 9:53sys.dm_exec_query_statsorsys.dm_os_performance_counters– Martin Smith Mar 15 '12 at 10:50