views:

96

answers:

1

Is there an expected size of tempDB for a Data Warehouse application. Is 10 gigs excessive? It's hit by frequent large queries. The Data Warehouse itself is 50 gigs.

I'm using SQL Server 2000

+2  A: 

That doesn't seem terribly out of line. If it's a problem, have you looked at your worst performing queries or your queries that use the most tempdb?

SQL Server 2000 doesn't have as many useful tools to monitor this as later versions have with DMVs etc, but you can use the profiler

http://sqlserver2000.databases.aspfaq.com/why-is-tempdb-full-and-how-can-i-prevent-this-from-happening.html

Cade Roux